:root {
  --green-900: #0d332b;
  --green-800: #15493f;
  --green-700: #1f6b59;
  --green-100: #e9f4ee;
  --gold: #d79a2b;
  --gold-dark: #b87916;
  --cream: #f8f2e8;
  --paper: #fffaf2;
  --ink: #1f2b27;
  --muted: #66736e;
  --line: rgba(13, 51, 43, 0.14);
  --shadow: 0 24px 60px rgba(13, 51, 43, 0.16);
}

/* Refined visual system */
:root {
  --surface: #ffffff;
  --wash: #fbf7ef;
  --soft-shadow: 0 18px 48px rgba(13, 51, 43, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  width: 100%;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(13, 51, 43, 0.96);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
}

.brand-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
}

.site-nav a.is-active {
  color: var(--gold);
  opacity: 1;
}

.header-actions,
.hero-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(13, 51, 43, 0.16);
}

.button-primary {
  background: var(--gold);
  color: #20170a;
  box-shadow: 0 16px 30px rgba(215, 154, 43, 0.26);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.36);
  color: #fff;
}

.button-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-900);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(20px, 6vw, 86px) 84px;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 31, 27, 0.9), rgba(9, 31, 27, 0.62) 50%, rgba(9, 31, 27, 0.25)),
    linear-gradient(0deg, rgba(9, 31, 27, 0.66), transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.feature-copy h2,
.site-footer h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.08;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(42px, 6vw, 72px);
}

.hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.hero-card {
  position: absolute;
  right: clamp(20px, 5vw, 70px);
  bottom: 34px;
  z-index: 1;
  width: min(310px, calc(100% - 40px));
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 250, 242, 0.14);
  backdrop-filter: blur(14px);
}

.hero-card span,
.hero-card small {
  display: block;
  color: rgba(255, 255, 255, 0.76);
}

.hero-card strong {
  display: block;
  margin: 4px 0;
  color: #fff;
  font-size: 23px;
}

.creative-hero::after {
  position: absolute;
  right: clamp(24px, 6vw, 88px);
  top: 112px;
  z-index: 1;
  width: clamp(86px, 12vw, 150px);
  height: clamp(86px, 12vw, 150px);
  border: 1px solid rgba(215, 154, 43, 0.65);
  border-radius: 50%;
  content: "";
}

.impact-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1050px, calc(100% - 36px));
  margin: -44px auto 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.impact-bar div {
  padding: 26px 24px;
  text-align: center;
}

.impact-bar div + div {
  border-left: 1px solid var(--line);
}

.impact-bar strong {
  display: block;
  color: var(--green-800);
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1;
}

.impact-bar span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: 54px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.service-strip article {
  min-height: 132px;
  padding: 28px;
  background: #fff;
}

.home-work {
  padding-top: 0;
}

.home-trust {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 0;
}

.home-gallery {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 0;
}

.gallery-preview {
  margin-bottom: 24px;
}

.section-button {
  width: fit-content;
}

.service-strip span {
  display: block;
  color: var(--green-900);
  font-weight: 900;
  text-transform: uppercase;
}

.service-strip p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section {
  padding: clamp(46px, 6vw, 76px) clamp(20px, 6vw, 86px);
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 520px;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(20px, 6vw, 86px) 76px;
  color: #fff;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 31, 27, 0.92), rgba(9, 31, 27, 0.58) 58%, rgba(9, 31, 27, 0.22)),
    linear-gradient(0deg, rgba(9, 31, 27, 0.52), transparent 50%);
  content: "";
}

.page-hero div {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.page-hero h1 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.06;
}

.page-hero p {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.intro,
.work,
.trust,
.gallery,
.contact-panel {
  max-width: 1240px;
  margin: 0 auto;
}

.split,
.founder,
.sponsor {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.section h2,
.feature-copy h2 {
  color: var(--green-900);
  font-size: clamp(30px, 3.3vw, 46px);
}

.intro p,
.feature-copy p,
.trust p,
.work-card p,
.quote-card p,
.site-footer p {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading p {
  color: var(--muted);
}

.home-intro {
  max-width: 1240px;
  margin: 0 auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  color: var(--green-800);
  font-weight: 900;
}

.text-link::after {
  margin-left: 8px;
  content: "->";
}

.featured-activity {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 12px;
}

.activity-highlight {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.activity-highlight img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.activity-highlight div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 56px);
}

.activity-highlight span,
.donation-poster span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.activity-highlight h3,
.donation-poster h2 {
  margin: 10px 0 14px;
  color: var(--green-900);
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
}

.activity-highlight p {
  color: var(--muted);
}

.home-donate-cta {
  max-width: 1240px;
  margin: 0 auto;
}

.donation-poster {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  border-radius: 8px;
  padding: clamp(22px, 4vw, 42px);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.donation-poster p {
  max-width: 620px;
  margin: 0 0 20px;
  color: var(--muted);
}

.donation-poster img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  border-radius: 8px;
  object-fit: cover;
}

.recent-activity {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: clamp(42px, 6vw, 78px);
}

.activity-page-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.activity-page-heading h2 {
  font-size: clamp(34px, 4vw, 56px);
}

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

.activity-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(13, 51, 43, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.activity-card:hover,
.work-card:hover,
.trust-grid article:hover,
.contact-grid article:hover,
.impact-use-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(13, 51, 43, 0.13);
}

.activity-card img {
  width: 100%;
  height: 260px;
  aspect-ratio: 1.38 / 1;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.activity-featured > img {
  height: 100%;
  min-height: 360px;
}

.activity-card:hover img,
.gallery-grid img:hover,
.donation-poster:hover img,
.activity-highlight:hover img {
  transform: scale(1.025);
}

.activity-card div {
  padding: 22px;
}

.activity-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.activity-card h3 {
  margin: 0 0 10px;
  color: var(--green-900);
  font-size: 22px;
  line-height: 1.18;
}

.activity-card h3 a {
  color: inherit;
  text-decoration: none;
}

.activity-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.activity-featured {
  grid-column: span 2;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
  background: var(--green-900);
}

.activity-featured img {
  height: 100%;
  min-height: 360px;
  aspect-ratio: auto;
}

.activity-featured div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 44px);
}

.activity-featured h3 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(34px, 4vw, 52px);
}

.activity-featured p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}

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

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

.work-card,
.trust-grid article,
.quote-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 18px 44px rgba(13, 51, 43, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.work-card {
  min-height: 250px;
}

.icon-box {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  font-weight: 900;
}

.work-card h3,
.trust-grid h3,
.bank-details h3,
.site-footer h3 {
  margin: 0 0 10px;
  color: var(--green-900);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(52px, 6vw, 78px) clamp(20px, 6vw, 86px);
  background:
    linear-gradient(135deg, rgba(13, 51, 43, 0.97), rgba(21, 73, 63, 0.94)),
    var(--green-900);
}

.feature-image {
  position: relative;
}

.feature-image::before {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(215, 154, 43, 0.45);
  border-radius: 8px;
  content: "";
}

.feature-image img {
  position: relative;
  width: 100%;
  height: min(44vw, 480px);
  min-height: 340px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
}

.feature-copy h2,
.feature-copy p {
  color: #fff;
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.involvement {
  background:
    linear-gradient(90deg, rgba(13, 51, 43, 0.92), rgba(13, 51, 43, 0.42)),
    url("assets/images/community.jpg") center / cover;
}

.involvement-card {
  width: min(620px, 100%);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 52px);
  background: rgba(255, 250, 242, 0.94);
  box-shadow: var(--shadow);
}

.involvement-card h2 {
  margin: 0;
  color: var(--green-900);
  font-family: "Poppins", sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
}

.involvement-card p {
  color: var(--muted);
}

.donate {
  background:
    linear-gradient(135deg, rgba(13, 51, 43, 0.94), rgba(31, 107, 89, 0.9)),
    var(--green-900);
}

.donate-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  color: #fff;
}

.manual-donation {
  background: var(--green-900);
  color: #fff;
}

.manual-donation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
  gap: clamp(28px, 5vw, 58px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}

.donation-copy h2 {
  margin: 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.donation-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.transfer-steps {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.transfer-steps article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.transfer-steps strong {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #20170a;
}

.transfer-steps span {
  color: rgba(255, 255, 255, 0.82);
}

.bank-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: clamp(28px, 4vw, 44px);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(248, 242, 232, 0.96)),
    #fff;
  color: var(--ink);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.bank-card::before {
  position: absolute;
  right: -70px;
  top: -70px;
  width: 190px;
  height: 190px;
  border: 30px solid rgba(215, 154, 43, 0.14);
  border-radius: 50%;
  content: "";
}

.bank-card > span {
  position: relative;
  display: block;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bank-card h3 {
  position: relative;
  margin: 8px 0 10px;
  color: var(--green-900);
  font-family: "Poppins", sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
}

.bank-card-note {
  position: relative;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.bank-card dl {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
}

.bank-card dl div {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(13, 51, 43, 0.1);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.74);
}

.bank-card dt {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bank-card dd {
  margin: 0;
  color: var(--green-900);
  font-size: 17px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.whatsapp-button {
  position: relative;
  width: 100%;
  min-height: 50px;
}

.donation-impact,
.impact-use-grid {
  max-width: 1180px;
  margin: 0 auto;
}

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

.impact-use-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(13, 51, 43, 0.07);
}

.impact-use-grid h3 {
  margin: 0 0 8px;
  color: var(--green-900);
}

.impact-use-grid p {
  margin: 0;
  color: var(--muted);
}

.donate-panel h2 {
  color: #fff;
}

.bank-details {
  position: relative;
  grid-column: 1 / -1;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 242, 232, 0.94)),
    #fff;
  color: var(--ink);
  padding: clamp(24px, 4vw, 34px);
}

.bank-details::after {
  position: absolute;
  right: -52px;
  bottom: -52px;
  width: 180px;
  height: 180px;
  border: 28px solid rgba(215, 154, 43, 0.12);
  border-radius: 50%;
  content: "";
}

.bank-details-header {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: 22px;
}

.bank-details-header span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bank-details-header p {
  margin: 6px 0 0;
  color: var(--muted);
}

.bank-details dl {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin: 0;
}

.bank-details dl div {
  min-width: 0;
  border-left: 3px solid var(--gold);
  padding: 12px 0 12px 14px;
  background: rgba(255, 255, 255, 0.52);
}

.bank-details dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.bank-details dd {
  margin: 4px 0 0;
  color: var(--green-900);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.trust {
  background: var(--paper);
}

.gallery {
  padding-top: 0;
}

.gallery-page {
  padding-top: clamp(34px, 5vw, 58px);
}

.gallery-heading {
  margin-bottom: 28px;
}

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

.gallery-grid img {
  width: 100%;
  height: clamp(210px, 18vw, 280px);
  aspect-ratio: 1 / 0.82;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  box-shadow: 0 16px 36px rgba(13, 51, 43, 0.11);
  transition: transform 350ms ease, box-shadow 220ms ease;
}

.gallery-grid img:hover {
  box-shadow: 0 22px 52px rgba(13, 51, 43, 0.16);
}

.founder {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 0;
}

.mission-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 0;
}

.quote-card p {
  margin-top: 0;
  font-size: 20px;
}

.quote-card strong,
.quote-card span {
  display: block;
}

.quote-card strong {
  color: var(--green-900);
}

.quote-card span {
  color: var(--gold-dark);
  font-weight: 800;
}

.quote-warm {
  background: var(--cream);
}

.sponsor {
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding-top: 70px;
}

.sponsor p {
  max-width: 680px;
  color: var(--muted);
}

.contact-panel {
  padding-top: clamp(48px, 7vw, 78px);
}

.contact-panel .section-heading p {
  color: var(--muted);
}

.contact-heading {
  max-width: 920px;
  margin-bottom: 34px;
}

.contact-heading h2 {
  font-size: clamp(42px, 5vw, 72px);
}

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

.contact-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.contact-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-grid strong {
  color: var(--green-900);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(180px, 0.7fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  padding: 64px clamp(20px, 6vw, 86px) 44px;
  background:
    linear-gradient(135deg, rgba(11, 39, 34, 0.98), rgba(13, 51, 43, 1)),
    #0b2722;
  color: #fff;
}

.footer-logo {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: #fff;
  object-fit: contain;
  padding: 7px;
}

.footer-logo strong,
.footer-logo small {
  display: block;
}

.footer-logo strong {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  line-height: 1.1;
}

.footer-logo small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand p {
  max-width: 460px;
  margin: 0 0 22px;
}

.footer-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 8px;
  padding: 10px 16px;
  background: var(--gold);
  color: #20170a !important;
  font-weight: 900;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links h3,
.footer-contact h3 {
  margin: 0 0 16px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 1.15;
}

.footer-links a {
  display: inline-flex;
  width: fit-content;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
}

.footer-contact p {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  overflow-wrap: anywhere;
}

.footer-contact span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.whatsapp-widget {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 35;
  display: grid;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  border-radius: 50%;
  padding: 0;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  animation: whatsappPulse 2.4s ease-in-out infinite;
}

.whatsapp-widget svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsapp-widget span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.mobile-donate {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: none;
  border-radius: 999px;
  padding: 14px 20px;
  background: var(--gold);
  color: #20170a;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

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

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

@keyframes whatsappPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .site-header.is-open .site-nav {
    gap: 14px;
  }

  .site-header.is-open .header-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 86vh;
    padding: 128px 20px 86px;
  }

  .hero-actions,
  .site-header.is-open .site-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-card {
    display: none;
  }

  .impact-bar,
  .service-strip,
  .split,
  .activity-highlight,
  .donation-poster,
  .manual-donation-grid,
  .impact-use-grid,
  .activity-grid,
  .work-grid,
  .feature-band,
  .donate-panel,
  .trust-grid,
  .gallery-grid,
  .founder,
  .mission-panel,
  .sponsor,
  .contact-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 520px;
    padding: 128px 20px 70px;
  }

  .activity-highlight img {
    min-height: 0;
    aspect-ratio: 1.25 / 1;
  }

  .activity-featured {
    grid-column: auto;
  }

  .activity-featured img {
    min-height: 0;
    aspect-ratio: 1.38 / 1;
  }

  .impact-bar {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
  }

  .impact-bar div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-strip {
    width: calc(100% - 36px);
  }

  .feature-band {
    min-height: auto;
    padding: 56px 20px;
  }

  .feature-image {
    min-height: 0;
  }

  .feature-image::before {
    display: none;
  }

  .feature-image img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.35 / 1;
  }

  .bank-details dl {
    grid-template-columns: 1fr;
  }

  .bank-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .activity-card img,
  .activity-featured > img,
  .gallery-grid img {
    height: 240px;
    min-height: 0;
  }

  .mobile-donate {
    display: inline-flex;
  }

  .whatsapp-widget {
    bottom: 76px;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .button {
    width: 100%;
  }

  .section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .footer-contact p {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .whatsapp-widget {
    right: 14px;
    width: 54px;
    height: 54px;
  }
}
