:root {
  --green: #a8c83b;
  --green-light: #f3f9dd;
  --orange: #ff4c17;
  --orange-dark: #e43c0a;
  --text: #252525;
  --muted: #626262;
  --white: #ffffff;
  --black: #111111;
  --footer: #171717;
  --max-width: 1560px;
  --font-main: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  font-size: 14px;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  width: 100%;
  background: linear-gradient(
    90deg,
    #f5fbdf 0%,
    #f5fbdf 65.8%,
    var(--green) 65.8%,
    var(--green) 100%
  );
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 0;
}

.header-inner {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
}

.site-logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #ffb52a;
  color: #e94411;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  border: 2px solid #ff6a1a;
  flex: 0 0 auto;
  font-size: 22px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.2px;
}

.logo-text strong {
  font-size: 15px;
  font-weight: 900;
}

.logo-text small {
  font-size: 14px;
  font-weight: 900;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  color: #222222;
  font-weight: 400;
}

.main-nav a {
  position: relative;
  padding: 36px 0;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--orange);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 23px;
  height: 4px;
  background: var(--orange);
}

.main-nav .nav-donate {
  background: var(--orange);
  color: var(--white);
  padding: 17px 39px;
  font-weight: 800;
  font-size: 15px;
  margin-left: 16px;
}

.main-nav .nav-donate:hover {
  background: var(--orange-dark);
  color: var(--white);
}

.main-nav .nav-donate::after {
  display: none;
}

.mobile-menu-btn {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  display: none;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--text);
  display: block;
}

/* HERO */

.hero-section {
  min-height: 585px;
  position: relative;
  background: linear-gradient(
    90deg,
    var(--green-light) 0%,
    var(--green-light) 65.8%,
    var(--green) 65.8%,
    var(--green) 100%
  );
  overflow: hidden;
}

.hero-left {
  position: relative;
  z-index: 2;
  width: 65.8%;
  min-height: 585px;
  display: flex;
  align-items: center;
  padding-left: max(58px, calc((100vw - var(--max-width)) / 2));
  padding-right: 36px;
  padding-top: 8px;
}

.hero-content {
  max-width: 790px;
  padding-bottom: 86px;
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  padding: 12px 31px;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  line-height: 1;
}

.hero-kicker {
  color: var(--orange);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: 0.095em;
  margin: 0 0 24px;
  text-transform: uppercase;
  font-weight: 400;
}

.hero-content h1 {
  font-size: clamp(42px, 3.75vw, 56px);
  line-height: 1.12;
  font-weight: 400;
  margin: 0 0 49px;
  max-width: 830px;
  letter-spacing: 0;
  color: #232323;
}

.hero-content .btn,
.hero-content .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #ffffff;
  min-height: 54px;
  padding: 0 36px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.hero-content .btn:hover,
.hero-content .btn-primary:hover {
  background: var(--orange-dark);
  color: #ffffff;
}

.hero-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 47%;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: visible;
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  display: block;
  transform: translateX(0px) scale(1.05);
  transform-origin: right bottom;
}

.hands-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 112px;
  background-image: url("../images/323478010_96e9aaa4-82e9-4f62-acfe-370c4463f98e-1-e1734335233263.png");
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: auto 112px;
  opacity: 1;
  z-index: 2;
}

.hands-strip::before {
  display: none;
}

/* COMMON SECTIONS */

.section-white {
  background: var(--white);
}

.section-green {
  background: #f3f9dd;
}

.section-heading {
  text-align: center;
  margin-bottom: 44px;
}

.section-heading h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-heading p {
  margin: 10px 0 0;
  color: var(--orange);
  font-size: 15px;
  letter-spacing: 0.05em;
}

/* ABOUT */

.about-section {
  position: relative;
  padding: 78px 0 58px;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  right: 5%;
  top: 18px;
  width: 520px;
  height: 260px;
  opacity: 0.04;
  background:
    radial-gradient(circle, #111 0 4px, transparent 5px);
  background-size: 38px 38px;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 52px;
  align-items: center;
}

.image-bordered {
  height: 315px;
  border: 3px solid var(--orange);
  overflow: hidden;
}

.image-bordered img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.about-content h2 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
  font-weight: 400;
  margin: 0 0 24px;
}

.about-content p {
  font-size: 13px;
  color: #4b4b4b;
  max-width: 620px;
  margin: 0 0 18px;
}

.about-content .btn {
  margin-top: 12px;
}

/* CAUSES */

.causes-section {
  padding: 34px 0 74px;
}

.causes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 430px));
  justify-content: center;
  gap: 36px;
}

.cause-card {
  height: 315px;
  position: relative;
  overflow: hidden;
}

.cause-bg {
  width: 100%;
  height: 100%;
  position: relative;
  color: var(--white);
}

.cause-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cause-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.cause-content {
  position: absolute;
  inset: 0;
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: none;
  letter-spacing: 0;
  text-align: center;
  color: var(--white);
}

.cause-content.align-bottom {
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
}

.cause-content h3 {
  font-size: 21px;
  line-height: 1.15;
  font-weight: 400;
  margin: 0 0 14px;
}

.cause-content p {
  max-width: 330px;
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 700;
}

/* TEAM */

.team-section {
  padding: 74px 0 72px;
}

.team-carousel {
  overflow: hidden;
}

@keyframes team-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.team-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: team-scroll 12s linear infinite;
}

.team-track:hover {
  animation-play-state: paused;
}

.member-card {
  width: 220px;
  flex-shrink: 0;
}

.member-photo {
  height: 205px;
  margin-bottom: 18px;
  overflow: hidden;
}

.member-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.member-card h3 {
  margin: 0 0 5px;
  font-size: 15px;
  font-weight: 400;
  text-decoration: underline;
}

.member-card p {
  margin: 0;
  color: #626262;
  font-size: 11px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 30px;
}

.slider-dots span {
  width: 6px;
  height: 6px;
  background: #c8c8c8;
  border-radius: 999px;
}

.slider-dots span.active {
  background: #777;
}

/* ACHIEVEMENTS */

.achievements-section {
  padding: 76px 0 82px;
}

.achievement-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
}

.achievement-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
}

.achievement-icon {
  width: 76px;
  height: 76px;
  border-radius: 34% 66% 45% 55% / 45% 38% 62% 55%;
  background: #ffb21f;
  color: #294219;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.achievement-copy {
  min-height: 76px;
  padding-left: 24px;
  border-left: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.achievement-copy strong {
  color: var(--orange);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
}

.achievement-copy span {
  color: #5b5b5b;
  font-size: 12px;
}

/* IMPACT */

.impact-section {
  padding: 76px 0 105px;
  background:
    linear-gradient(rgba(245, 245, 245, 0.88), rgba(245, 245, 245, 0.88)),
    repeating-linear-gradient(
      90deg,
      #efefef 0,
      #efefef 6px,
      #e7e7e7 6px,
      #e7e7e7 12px
    );
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  align-items: start;
}

.impact-frame {
  background: #f7f7f7;
  padding: 20px;
  border: 12px solid #ffffff;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.14),
    inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  position: relative;
}

.impact-frame::before {
  content: "";
  width: 38px;
  height: 38px;
  border-left: 2px solid #555;
  border-top: 2px solid #555;
  transform: rotate(45deg);
  position: absolute;
  top: -42px;
  left: 50%;
  margin-left: -19px;
}

.impact-photo {
  height: 270px;
  overflow: hidden;
}

.impact-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* FOOTER */

.site-footer {
  background:
    linear-gradient(rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.84)),
    linear-gradient(135deg, #232323, #111111);
  color: var(--white);
}

.footer-overlay {
  padding-top: 54px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 0.6fr 0.8fr;
  gap: 80px;
  padding-bottom: 48px;
}

.footer-logo {
  margin-bottom: 22px;
}

.footer-about p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 17px;
  font-weight: 400;
  margin: 0 0 23px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  text-align: left;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

/* INNER PAGE BASIC STYLES */

.page-hero {
  background: var(--green-light);
  padding: 84px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 400;
  margin: 0 0 10px;
}

.page-hero p {
  color: var(--orange);
  margin: 0;
  letter-spacing: 0.06em;
}

.content-section {
  padding: 72px 0;
}

.content-section h2 {
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 18px;
}

.content-section p {
  color: #555;
  max-width: 900px;
}

.simple-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 38px;
}

.simple-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 26px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.simple-card h3 {
  margin: 0 0 10px;
  font-weight: 400;
}

/* RESPONSIVE */


 @media (max-width: 1040px) {
  .main-nav {
    gap: 18px;
    font-size: 12px;
  }

  .main-nav .nav-donate {
    padding: 13px 24px;
  }

  .hero-section {
    grid-template-columns: 1fr;
  }

  .hero-left {
    min-height: 500px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-right {
    min-height: 430px;
  }

  .hero-image {
    object-position: center bottom;
  }

  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .team-grid,
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .achievement-grid {
    gap: 26px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 32px, var(--max-width));
  }

  .mobile-menu-btn {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #f6fbdf;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 22px;
    border-top: 1px solid rgba(0,0,0,0.06);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 0;
  }

  .main-nav a.active::after {
    display: none;
  }

  .main-nav .nav-donate {
    margin-top: 10px;
    text-align: center;
    padding: 12px 18px;
  }

  .hero-content {
    padding-bottom: 70px;
  }

  .causes-grid,
  .achievement-grid,
  .impact-grid,
  .simple-card-grid {
    grid-template-columns: 1fr;
  }

  .cause-card {
    height: 300px;
  }

  .achievement-item {
    justify-content: flex-start;
  }
}


 @media (max-width: 560px) {
  .header-inner {
    height: 64px;
  }

  .main-nav {
    top: 64px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-left {
    min-height: 500px;
    padding: 44px 24px 0;
  }

  .hero-content {
    padding-bottom: 95px;
  }

  .eyebrow {
    font-size: 11px;
    padding: 10px 16px;
    margin-bottom: 24px;
  }

  .hero-kicker {
    font-size: 17px;
    line-height: 1.35;
  }

  .hero-content h1 {
    font-size: 38px;
    line-height: 1.12;
    margin-bottom: 34px;
  }

  .hero-right {
    min-height: 360px;
  }

  .about-section,
  .team-section,
  .achievements-section,
  .content-section {
    padding: 52px 0;
  }

  .causes-section {
    padding: 32px 0 52px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .member-photo {
    height: 260px;
  }

  .section-heading h2 {
    font-size: 27px;
  }

  .section-heading p {
    font-size: 13px;
  }

  .footer-grid {
    gap: 34px;
  }
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

.site-header--white {
  background: #ffffff;
}

.site-header--white .main-nav {
  color: #222222;
}

.inner-hero {
  min-height: 410px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.48)),
    url("../images/aboutheader.png");
  background-size: cover;
  background-position: center 42%;
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.inner-hero-content h1 {
  color: #ffffff;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin: 0;
}

/* ABOUT INTRO */

.about-intro-section {
  padding: 112px 0 70px;
  background: #ffffff;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 70px;
  align-items: start;
}

.about-intro-media {
  min-height: 330px;
}

.about-image-placeholder {
  width: 100%;
  height: 330px;
  background:
    linear-gradient(135deg, rgba(168, 200, 59, 0.18), rgba(255, 76, 23, 0.14)),
    repeating-linear-gradient(
      -45deg,
      rgba(0, 0, 0, 0.04) 0,
      rgba(0, 0, 0, 0.04) 8px,
      rgba(255, 255, 255, 0.2) 8px,
      rgba(255, 255, 255, 0.2) 16px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.about-intro-copy {
  padding-top: 6px;
}

.about-intro-copy h2 {
  font-size: 38px;
  line-height: 1.08;
  font-weight: 400;
  color: #262626;
  margin: 0 0 28px;
}

.about-intro-copy p {
  font-size: 13px;
  line-height: 1.62;
  color: #404040;
  max-width: 620px;
  margin: 0 0 18px;
}

/* ABOUT STORY */

.about-story-section {
  padding: 54px 0 72px;
  background: #ffffff;
}

.about-story-section h2 {
  font-size: 38px;
  line-height: 1.08;
  font-weight: 400;
  color: #2b2b2b;
  margin: 0 0 28px;
  max-width: 610px;
}

.about-story-text {
  color: #4a4a4a;
  font-size: 13px;
  line-height: 1.67;
}

.about-story-text p {
  margin: 0 0 18px;
}

/* MISSION */

.mission-section {
  padding: 28px 0 92px;
  background: #ffffff;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.mission-card {
  min-height: 305px;
  border: 4px solid rgba(255, 76, 23, 0.45);
  background: #fff7f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 52px;
}

.mission-card h2 {
  font-size: 36px;
  font-weight: 400;
  margin: 0 0 24px;
  letter-spacing: 0.03em;
}

.mission-card p {
  font-size: 13px;
  color: #555555;
  line-height: 1.6;
  max-width: 530px;
  margin: 0;
}

.mission-image {
  min-height: 305px;
}

.mission-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 305px;
  background:
    linear-gradient(135deg, rgba(168, 200, 59, 0.18), rgba(255, 76, 23, 0.12)),
    repeating-linear-gradient(
      -45deg,
      rgba(0, 0, 0, 0.045) 0,
      rgba(0, 0, 0, 0.045) 8px,
      rgba(255, 255, 255, 0.18) 8px,
      rgba(255, 255, 255, 0.18) 16px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

/* QUOTE */

.quote-section {
  position: relative;
  min-height: 570px;
  padding: 92px 0;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(6, 33, 50, 0.78), rgba(6, 33, 50, 0.82)),
    url("../images/quote-bg.jpg");
  background-size: cover;
  background-position: center;
}

.quote-box {
  position: relative;
  z-index: 2;
  border: 4px solid rgba(255,255,255,0.9);
  padding: 68px 74px 58px;
  text-align: center;
  color: #ffffff;
}

.quote-box blockquote {
  margin: 0 0 34px;
  font-size: 28px;
  line-height: 1.65;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.quote-author {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
  border-bottom: 4px solid var(--green);
  padding-bottom: 10px;
  margin-bottom: 36px;
}

.author-icon {
  font-size: 22px;
  line-height: 1;
}

.quote-box p {
  max-width: 1050px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

/* DONATION CTA */

.about-donation-section {
  background: var(--green);
  padding: 58px 0;
}

.donation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.donation-copy h2 {
  font-size: 34px;
  line-height: 1.25;
  font-weight: 400;
  margin: 0 0 30px;
  color: #1f1f1f;
}

.donation-copy .btn {
  min-height: 40px;
  padding: 0 24px;
}

.donation-word-placeholder {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 78px;
  line-height: 1;
  font-weight: 900;
  color: rgba(255,255,255,0.86);
  letter-spacing: 0.02em;
  background:
    radial-gradient(circle at 10% 30%, rgba(255,255,255,0.35), transparent 9%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.22), transparent 11%);
}

/* ABOUT RESPONSIVE */

@media (max-width: 1040px) {
  .about-intro-grid,
  .mission-grid,
  .donation-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-section {
    padding: 76px 0 50px;
  }

  .quote-box {
    padding: 48px 32px;
  }

  .quote-box blockquote {
    font-size: 22px;
  }

  .donation-word-placeholder {
    font-size: 58px;
  }
}

@media (max-width: 640px) {
  .inner-hero {
    min-height: 300px;
  }

  .inner-hero-content h1 {
    font-size: 34px;
  }

  .about-intro-copy h2,
  .about-story-section h2,
  .mission-card h2 {
    font-size: 28px;
  }

  .about-intro-section {
    padding: 54px 0 36px;
  }

  .about-story-section {
    padding: 36px 0 52px;
  }

  .mission-section {
    padding: 20px 0 58px;
  }

  .mission-card {
    padding: 34px 22px;
  }

  .quote-section {
    min-height: auto;
    padding: 54px 0;
  }

  .quote-box {
    border-width: 2px;
    padding: 34px 18px;
  }

  .quote-box blockquote {
    font-size: 18px;
    line-height: 1.55;
  }

  .quote-box p {
    font-size: 13px;
  }

  .about-donation-section {
    padding: 42px 0;
  }

  .donation-copy h2 {
    font-size: 25px;
  }

  .donation-word-placeholder {
    min-height: 120px;
    font-size: 40px;
  }
}

/* =========================================================
   ABOUT PAGE FIX WITH PLACEHOLDERS
   ========================================================= */

.site-header--white {
  background: #ffffff;
}

/* ABOUT HERO */

.inner-hero {
  min-height: 410px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero-placeholder {
  background:
    linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.52)),
    linear-gradient(135deg, #7a8b7a, #2f4032);
}

.about-hero-placeholder::before {
  content: "Hero Image Placeholder";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.22);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.inner-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.inner-hero-content h1 {
  color: #ffffff;
  font-size: 44px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0;
}

/* GENERAL PLACEHOLDER IMAGE STYLE */

.page-image-placeholder {
  width: 100%;
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(168, 200, 59, 0.22), rgba(255, 76, 23, 0.14)),
    repeating-linear-gradient(
      -45deg,
      rgba(0, 0, 0, 0.055) 0,
      rgba(0, 0, 0, 0.055) 8px,
      rgba(255, 255, 255, 0.24) 8px,
      rgba(255, 255, 255, 0.24) 16px
    );
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 14px;
}

.about-main-placeholder {
  min-height: 330px;
}

.mission-main-placeholder {
  min-height: 305px;
}

/* ABOUT INTRO SECTION */

.about-intro-section {
  padding: 112px 0 70px;
  background: #ffffff;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 70px;
  align-items: start;
}

.about-intro-media {
  min-height: 330px;
  overflow: hidden;
}

.about-intro-img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-intro-copy {
  padding-top: 6px;
}

.about-intro-copy h2 {
  font-size: 38px;
  line-height: 1.08;
  font-weight: 400;
  color: #262626;
  margin: 0 0 28px;
}

.about-intro-copy p {
  font-size: 13px;
  line-height: 1.62;
  color: #404040;
  max-width: 620px;
  margin: 0 0 18px;
}

/* ABOUT STORY SECTION */

.about-story-section {
  padding: 54px 0 72px;
  background: #ffffff;
}

.about-story-section h2 {
  font-size: 38px;
  line-height: 1.08;
  font-weight: 400;
  color: #2b2b2b;
  margin: 0 0 28px;
  max-width: 610px;
}

.about-story-text {
  color: #4a4a4a;
  font-size: 13px;
  line-height: 1.67;
}

.about-story-text p {
  margin: 0 0 18px;
}

/* MISSION */

.mission-section {
  padding: 28px 0 92px;
  background: #ffffff;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.mission-card {
  min-height: 305px;
  border: 4px solid rgba(255, 76, 23, 0.45);
  background: #fff7f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 52px;
}

.mission-card h2 {
  font-size: 36px;
  font-weight: 400;
  margin: 0 0 24px;
  letter-spacing: 0.03em;
}

.mission-card p {
  font-size: 13px;
  color: #555555;
  line-height: 1.6;
  max-width: 530px;
  margin: 0;
}

.mission-image {
  min-height: 305px;
  overflow: hidden;
}

.mission-img {
  width: 100%;
  height: 100%;
  min-height: 305px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.donation-art-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* QUOTE SECTION */

.quote-section {
  position: relative;
  min-height: 570px;
  padding: 92px 0;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(6, 33, 50, 0.82), rgba(6, 33, 50, 0.86)),
    linear-gradient(135deg, #163248, #071721);
}

.quote-section::before {
  content: "Quote Background Placeholder";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.08);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-box {
  position: relative;
  z-index: 2;
  border: 4px solid rgba(255, 255, 255, 0.9);
  padding: 68px 74px 58px;
  text-align: center;
  color: #ffffff;
}

.quote-box blockquote {
  margin: 0 0 34px;
  font-size: 28px;
  line-height: 1.65;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.quote-author {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
  border-bottom: 4px solid var(--green);
  padding-bottom: 10px;
  margin-bottom: 36px;
}

.author-icon {
  font-size: 22px;
  line-height: 1;
}

.quote-box p {
  max-width: 1050px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

/* DONATION CTA */

.about-donation-section {
  background: var(--green);
  padding: 58px 0;
}

.donation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.donation-copy h2 {
  font-size: 34px;
  line-height: 1.25;
  font-weight: 400;
  margin: 0 0 30px;
  color: #1f1f1f;
}

.donation-copy .btn {
  min-height: 40px;
  padding: 0 24px;
}

.donation-word-placeholder {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 78px;
  line-height: 1;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: 0.02em;
  background:
    radial-gradient(circle at 10% 30%, rgba(255,255,255,0.35), transparent 9%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.22), transparent 11%);
}

/* ABOUT RESPONSIVE */

@media (max-width: 1040px) {
  .about-intro-grid,
  .mission-grid,
  .donation-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-section {
    padding: 76px 0 50px;
  }

  .quote-box {
    padding: 48px 32px;
  }

  .quote-box blockquote {
    font-size: 22px;
  }

  .donation-word-placeholder {
    font-size: 58px;
  }
}

@media (max-width: 640px) {
    
  .inner-hero {
    min-height: 300px;
  }

  .about-hero-placeholder::before {
    font-size: 18px;
  }

  .inner-hero-content h1 {
    font-size: 34px;
  }

  .about-intro-copy h2,
  .about-story-section h2,
  .mission-card h2 {
    font-size: 28px;
  }

  .about-intro-section {
    padding: 54px 0 36px;
  }

  .about-story-section {
    padding: 36px 0 52px;
  }

  .mission-section {
    padding: 20px 0 58px;
  }

  .mission-card {
    padding: 34px 22px;
  }

  .quote-section {
    min-height: auto;
    padding: 54px 0;
  }

  .quote-box {
    border-width: 2px;
    padding: 34px 18px;
  }

  .quote-box blockquote {
    font-size: 18px;
    line-height: 1.55;
  }

  .quote-box p {
    font-size: 13px;
  }

  .about-donation-section {
    padding: 42px 0;
  }

  .donation-copy h2 {
    font-size: 25px;
  }

  .donation-word-placeholder {
    min-height: 120px;
    font-size: 40px;
  }
}

/* =========================================================
   INNER PAGES: CAUSES / MEMBERS / CONTRIBUTION / GALLERY / CONTACT / BLOGS
   Placeholder-based static pages
   ========================================================= */

.inner-page-hero {
  min-height: 365px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.inner-page-hero::before {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.13);
  z-index: 1;
}

.inner-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.46);
  z-index: 2;
}

.inner-page-hero h1 {
  position: relative;
  z-index: 3;
  color: #fff;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0;
  text-transform: uppercase;
}

.hero-causes {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
              url('../images/causeheader.jpeg') center/cover no-repeat;
}

.hero-members {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
              url('../images/memberheader.png') center/cover no-repeat;
}

.hero-contribution {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
              url('../images/donate.png') center/cover no-repeat;
}

.hero-gallery {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
              url('../images/galleryhead.png') center/cover no-repeat;
}

.hero-contact {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
              url('../images/contacthead.jpg') center/cover no-repeat;
}

.hero-blogs {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
              url('../images/blogheader.png') center/cover no-repeat;
}

.inner-section {
  padding: 82px 0;
  background: #ffffff;
}

.inner-section-soft {
  padding: 82px 0;
  background: #f3f9dd;
}

.inner-section-grey {
  padding: 82px 0;
  background: #eeeeee;
}

.inner-heading {
  margin-bottom: 46px;
}

.inner-heading.center {
  text-align: center;
}

.inner-heading h2 {
  margin: 0 0 18px;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 400;
  color: #292929;
  text-transform: uppercase;
}

.inner-heading p {
  margin: 0;
  max-width: 1120px;
  color: #555;
  font-size: 14px;
  line-height: 1.65;
}

.placeholder-block {
  width: 100%;
  background:
    linear-gradient(135deg, rgba(168, 200, 59, 0.2), rgba(255, 76, 23, 0.14)),
    repeating-linear-gradient(
      -45deg,
      rgba(0,0,0,0.045) 0,
      rgba(0,0,0,0.045) 8px,
      rgba(255,255,255,0.2) 8px,
      rgba(255,255,255,0.2) 16px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.4);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.placeholder-dark {
  background:
    linear-gradient(rgba(0,0,0,0.48), rgba(0,0,0,0.5)),
    linear-gradient(135deg, #777, #222);
  color: rgba(255,255,255,0.75);
}

/* CAUSES */

.causes-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 58px 0 36px;
}

.cause-large-img {
  min-height: 340px;
  overflow: hidden;
}

.cause-large-img-el {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cause-donation-card {
  min-height: 340px;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('../images/cause2.png') center/cover no-repeat;
}

.cause-donation-card .cause-card-content {
  position: relative;
  z-index: 2;
}

.cause-donation-card h3 {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 400;
}

.cause-donation-card p {
  max-width: 440px;
  margin: 0 auto 22px;
  font-size: 14px;
  font-weight: 700;
}

.text-content {
  color: #444;
  font-size: 14px;
  line-height: 1.7;
}

.text-content p {
  margin: 0 0 20px;
}

.text-content ul {
  margin: 0 0 24px 24px;
}

.memories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.memory-tile {
  height: 360px;
  overflow: hidden;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.memory-tile-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* MEMBERS */

.members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 72px 36px;
}

.member-page-card h3 {
  margin: 18px 0 8px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 400;
  text-transform: uppercase;
}

.member-page-card p {
  margin: 0;
  color: #555;
  font-size: 13px;
}

.member-page-photo {
  min-height: 245px;
  overflow: hidden;
}

.member-page-img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* CONTRIBUTION */

.contribution-intro {
  padding: 54px 0 46px;
  background: #ffffff;
}

.contribution-top-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 80px;
  align-items: center;
}

.bank-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.bank-table td {
  border: 1px solid #d2d2d2;
  padding: 18px 22px;
}

.bank-table td:first-child {
  background: #f3f3f3;
  width: 34%;
  color: #555;
}

.qr-placeholder {
  min-height: 360px;
  max-width: 390px;
  margin: 0 auto;
  overflow: hidden;
}

.qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.policy-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.policy-box {
  background: #ffffff;
  border: 1px solid #d5d5d5;
  margin-bottom: 18px;
}

.policy-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}

.policy-heading:hover {
  background: #f5f5f5;
}

.policy-heading.is-active {
  background: #f0f0f0;
  border-bottom: 1px solid #d5d5d5;
  color: #b5451b;
}

.policy-arrow {
  font-size: 12px;
  transition: transform 0.25s;
  color: #888;
}

.policy-heading.is-active .policy-arrow {
  transform: rotate(180deg);
  color: #b5451b;
}

.policy-body {
  padding: 20px 24px;
  color: #555;
  font-size: 13px;
  line-height: 1.75;
}

.policy-body ol,
.policy-body ul {
  padding-left: 20px;
  margin: 10px 0 14px;
}

.policy-body li {
  margin-bottom: 6px;
}

/* GALLERY */

.gallery-wall {
  background:
    linear-gradient(rgba(245,245,245,0.9), rgba(245,245,245,0.9)),
    repeating-linear-gradient(
      90deg,
      #e6e6e6 0,
      #e6e6e6 7px,
      #dddddd 7px,
      #dddddd 14px
    );
  padding: 72px 0 96px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px 78px;
}

.gallery-frame {
  background: #ffffff;
  padding: 16px;
  border: 10px solid #fff;
  box-shadow: 0 12px 22px rgba(0,0,0,0.16);
  position: relative;
}

.gallery-frame::before {
  content: "";
  width: 30px;
  height: 30px;
  border-left: 2px solid #555;
  border-top: 2px solid #555;
  transform: rotate(45deg);
  position: absolute;
  top: -38px;
  left: 50%;
  margin-left: -15px;
}

.gallery-photo {
  min-height: 210px;
  overflow: hidden;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
}

.gallery-pagination button {
  width: 38px;
  height: 38px;
  border: 2px solid var(--orange);
  background: transparent;
  color: var(--orange);
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.gallery-pagination button.active,
.gallery-pagination button:hover {
  background: var(--orange);
  color: #fff;
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 88px;
  align-items: start;
}

.form-title,
.location-title {
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 20px;
}

.title-line {
  width: 64px;
  height: 3px;
  background: var(--orange);
  margin-bottom: 28px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 34px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: #999;
  font-size: 14px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form .btn {
  margin-top: 24px;
  min-height: 46px;
  padding: 0 42px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.location-card {
  background: #fff0eb;
  padding: 38px 34px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  align-items: center;
}

.location-icon {
  color: var(--orange);
  font-size: 38px;
}

.location-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 400;
}

.location-card p,
.location-card a {
  margin: 0;
  color: #555;
  font-size: 16px;
}

.location-card a {
  color: var(--orange);
  text-decoration: underline;
}

/* BLOGS */

.blog-section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 44px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.blog-grid.two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 920px;
}

.blog-card-img {
  min-height: 190px;
  margin-bottom: 14px;
  overflow: hidden;
}

.blog-card-img-el {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.blog-card .date {
  font-size: 11px;
  color: #888;
  margin-bottom: 8px;
}

.blog-card h3 {
  font-size: 19px;
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 10px;
}

.blog-card p {
  font-size: 13px;
  line-height: 1.55;
  color: #555;
  margin: 0 0 18px;
}

.read-more {
  color: var(--orange);
  font-size: 11px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 4px;
}

.policy-list {
  max-width: 100%;
}

.policy-list article {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid #e5e5e5;
}

.policy-list article:last-child {
  border-bottom: none;
}

.policy-list .date {
  font-size: 11px;
  color: #888;
  margin-bottom: 12px;
}

.policy-list h3 {
  font-size: 20px;
  margin: 0 0 12px;
}

.policy-list p {
  color: #555;
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 20px;
}

.policy-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Shared responsive */

@media (max-width: 1040px) {
  .causes-content-grid,
  .contribution-top-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .members-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid,
  .blog-grid,
  .blog-grid.two,
  .memories-grid,
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .inner-page-hero {
    min-height: 280px;
  }

  .inner-page-hero h1 {
    font-size: 34px;
  }

  .inner-page-hero::before {
    font-size: 20px;
  }

  .inner-section,
  .inner-section-soft,
  .inner-section-grey {
    padding: 54px 0;
  }

  .inner-heading h2 {
    font-size: 30px;
  }

  .members-grid,
  .gallery-grid,
  .blog-grid,
  .blog-grid.two,
  .memories-grid,
  .location-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    gap: 58px;
  }

  .member-page-photo,
  .memory-tile,
  .gallery-photo {
    min-height: 240px;
  }

  .bank-table td {
    display: block;
    width: 100%;
  }

  .bank-table td:first-child {
    width: 100%;
  }
}