@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap");

:root {
  --omf-green-950: #0a271f;
  --omf-green-900: #0f3228;
  --omf-green-800: #143d32;
  --omf-green-700: #1f5947;
  --omf-green-600: #32725d;
  --omf-sage: #8fad83;
  --omf-sage-soft: #dfe9d9;
  --omf-gold: #d6ae62;
  --omf-gold-light: #ead09b;
  --omf-ivory: #f7f2e8;
  --omf-paper: #fffdf8;
  --omf-ink: #1c2924;
  --omf-muted: #647069;
  --omf-line: rgba(20, 61, 50, 0.14);
  --omf-shadow: 0 24px 70px rgba(15, 50, 40, 0.12);
  --omf-shadow-sm: 0 14px 36px rgba(15, 50, 40, 0.09);
  --omf-radius: 28px;
  --omf-radius-sm: 18px;
  --omf-transition: 280ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  background: var(--omf-paper);
  color: var(--omf-ink);
  font-family: "Manrope", "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.72;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--omf-gold);
  color: var(--omf-green-950);
}

a {
  color: var(--omf-green-700);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--omf-green-900);
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--omf-green-950);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  background: var(--omf-gold);
  color: var(--omf-green-950);
  font-weight: 700;
  left: 16px;
  padding: 10px 18px;
  position: fixed;
  top: -80px;
  transition: top 180ms ease;
  z-index: 9999;
}

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

.section-space {
  padding: 112px 0;
}

.section-space-sm {
  padding: 80px 0;
}

.section-ivory {
  background: var(--omf-ivory);
}

.section-dark {
  background: var(--omf-green-950);
  color: rgba(255, 255, 255, 0.76);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #fff;
}

.eyebrow {
  align-items: center;
  color: var(--omf-green-600);
  display: inline-flex;
  font-family: "DM Sans", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--omf-gold);
  content: "";
  height: 2px;
  width: 28px;
}

.eyebrow-light {
  color: var(--omf-gold-light);
}

.section-title {
  font-size: clamp(2.2rem, 4.3vw, 4.2rem);
  margin-bottom: 22px;
}

.section-title-sm {
  font-size: clamp(2rem, 3.2vw, 3.15rem);
}

.section-lead {
  color: var(--omf-muted);
  font-size: 1.05rem;
  max-width: 660px;
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.68);
}

.text-balance {
  text-wrap: balance;
}

.top-note {
  background: var(--omf-green-950);
  color: rgba(255, 255, 255, 0.74);
  font-family: "DM Sans", sans-serif;
  font-size: 0.77rem;
  letter-spacing: 0.04em;
  padding: 7px 0;
}

.top-note strong {
  color: var(--omf-gold-light);
  font-weight: 600;
}

.site-navbar {
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 13px 0;
  transition: var(--omf-transition);
  z-index: 1040;
}

.site-navbar.scrolled {
  border-bottom-color: var(--omf-line);
  box-shadow: 0 8px 28px rgba(15, 50, 40, 0.06);
  padding: 9px 0;
}

.navbar-brand {
  align-items: center;
  color: var(--omf-green-950);
  display: inline-flex;
  gap: 11px;
  margin-right: 28px;
  text-decoration: none;
}

.brand-mark {
  border-radius: 13px;
  box-shadow: 0 7px 18px rgba(20, 61, 50, 0.16);
  height: 49px;
  width: 49px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-short {
  color: var(--omf-green-600);
  font-family: "DM Sans", sans-serif;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  margin-top: 6px;
  text-transform: uppercase;
}

.site-navbar .nav-link {
  color: var(--omf-ink);
  font-family: "DM Sans", sans-serif;
  font-size: 0.91rem;
  font-weight: 600;
  padding: 10px 12px !important;
  position: relative;
}

.site-navbar .nav-link::after {
  background: var(--omf-gold);
  bottom: 3px;
  content: "";
  height: 2px;
  left: 12px;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--omf-transition);
  width: calc(100% - 24px);
}

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 0;
  box-shadow: none !important;
  height: 45px;
  padding: 7px;
  width: 45px;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  background: var(--omf-green-950);
  content: "";
  display: block;
  height: 2px;
  position: relative;
  transition: var(--omf-transition);
  width: 27px;
}

.menu-lines::before {
  position: absolute;
  top: -8px;
}

.menu-lines::after {
  position: absolute;
  top: 8px;
}

.navbar-toggler[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .menu-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .menu-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.btn {
  border-radius: 999px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 13px 23px;
  transition: transform var(--omf-transition), box-shadow var(--omf-transition), background var(--omf-transition), color var(--omf-transition), border-color var(--omf-transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-brand {
  background: var(--omf-gold);
  border: 1px solid var(--omf-gold);
  color: var(--omf-green-950);
  box-shadow: 0 12px 28px rgba(214, 174, 98, 0.25);
}

.btn-brand:hover,
.btn-brand:focus {
  background: var(--omf-gold-light);
  border-color: var(--omf-gold-light);
  color: var(--omf-green-950);
  box-shadow: 0 16px 32px rgba(214, 174, 98, 0.33);
}

.btn-green {
  background: var(--omf-green-800);
  border: 1px solid var(--omf-green-800);
  color: #fff;
  box-shadow: 0 12px 26px rgba(20, 61, 50, 0.18);
}

.btn-green:hover,
.btn-green:focus {
  background: var(--omf-green-950);
  border-color: var(--omf-green-950);
  color: #fff;
}

.btn-outline-green {
  background: transparent;
  border: 1px solid rgba(20, 61, 50, 0.36);
  color: var(--omf-green-900);
}

.btn-outline-green:hover,
.btn-outline-green:focus {
  background: var(--omf-green-900);
  border-color: var(--omf-green-900);
  color: #fff;
}

.btn-outline-light-soft {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
}

.btn-outline-light-soft:hover,
.btn-outline-light-soft:focus {
  background: #fff;
  border-color: #fff;
  color: var(--omf-green-950);
}

.btn-icon {
  align-items: center;
  display: inline-flex;
  gap: 9px;
}

.hero {
  background: var(--omf-green-950);
  color: #fff;
  min-height: 760px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 23px 23px;
  content: "";
  inset: 0 55% 0 0;
  opacity: 0.18;
  pointer-events: none;
  position: absolute;
}

.hero .container-fluid {
  min-height: 760px;
}

.hero-content {
  padding: 108px 4vw 108px max(24px, calc((100vw - 1320px) / 2));
  position: relative;
  z-index: 2;
}

.hero-kicker {
  align-items: center;
  color: var(--omf-gold-light);
  display: flex;
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  gap: 11px;
  letter-spacing: 0.17em;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.hero-kicker span {
  background: var(--omf-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(214, 174, 98, 0.12);
  height: 7px;
  width: 7px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(3rem, 5.7vw, 6.5rem);
  line-height: 0.98;
  margin-bottom: 29px;
  max-width: 760px;
}

.hero h1 em {
  color: var(--omf-gold-light);
  font-style: italic;
  font-weight: 600;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.3vw, 1.13rem);
  margin-bottom: 35px;
  max-width: 590px;
}

.hero-trust {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin-top: 50px;
  max-width: 620px;
  padding-top: 25px;
}

.hero-trust-item {
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  display: flex;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  gap: 8px;
}

.hero-trust-item i {
  color: var(--omf-gold-light);
}

.hero-media {
  min-height: 760px;
  overflow: hidden;
  position: relative;
}

.hero-media::after {
  background: linear-gradient(90deg, var(--omf-green-950) 0%, rgba(10, 39, 31, 0.42) 16%, rgba(10, 39, 31, 0.04) 48%, rgba(10, 39, 31, 0.08) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-media img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  transform: scale(1.015);
  width: 100%;
}

.hero-stamp {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(247, 242, 232, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 22px;
  bottom: 36px;
  color: var(--omf-green-950);
  display: flex;
  gap: 14px;
  left: 36px;
  max-width: 290px;
  padding: 17px 19px;
  position: absolute;
  z-index: 2;
}

.hero-stamp-icon {
  align-items: center;
  background: var(--omf-green-800);
  border-radius: 50%;
  color: var(--omf-gold-light);
  display: flex;
  flex: 0 0 47px;
  height: 47px;
  justify-content: center;
}

.hero-stamp strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  line-height: 1.15;
}

.hero-stamp span {
  color: var(--omf-muted);
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  margin-top: 4px;
}

.mission-strip {
  background: var(--omf-gold);
  color: var(--omf-green-950);
  overflow: hidden;
  padding: 15px 0;
}

.mission-track {
  animation: marquee 30s linear infinite;
  display: flex;
  min-width: max-content;
}

.mission-track span {
  align-items: center;
  display: flex;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  gap: 22px;
  letter-spacing: 0.12em;
  padding-right: 22px;
  text-transform: uppercase;
}

.mission-track i {
  font-size: 0.6rem;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.about-visual {
  min-height: 630px;
  position: relative;
}

.about-image-main {
  border-radius: var(--omf-radius);
  box-shadow: var(--omf-shadow);
  height: 560px;
  object-fit: cover;
  width: 84%;
}

.about-image-float {
  border: 9px solid var(--omf-paper);
  border-radius: 22px;
  bottom: 0;
  box-shadow: var(--omf-shadow-sm);
  height: 245px;
  object-fit: cover;
  position: absolute;
  right: 0;
  width: 43%;
}

.about-seal {
  align-items: center;
  background: var(--omf-green-800);
  border: 7px solid var(--omf-paper);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 138px;
  justify-content: center;
  left: 69%;
  position: absolute;
  top: 52px;
  transform: translateX(-50%);
  width: 138px;
}

.about-seal strong {
  color: var(--omf-gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
}

.about-seal span {
  font-family: "DM Sans", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  margin-top: 6px;
  text-transform: uppercase;
}

.founder-note {
  border-left: 3px solid var(--omf-gold);
  color: var(--omf-green-900);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.22rem;
  font-style: italic;
  margin: 30px 0;
  padding-left: 22px;
}

.mini-feature {
  align-items: flex-start;
  display: flex;
  gap: 14px;
  margin-top: 23px;
}

.mini-feature-icon {
  align-items: center;
  background: var(--omf-sage-soft);
  border-radius: 50%;
  color: var(--omf-green-700);
  display: flex;
  flex: 0 0 42px;
  height: 42px;
  justify-content: center;
}

.mini-feature strong {
  color: var(--omf-green-950);
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.93rem;
  margin-bottom: 2px;
}

.mini-feature span {
  color: var(--omf-muted);
  display: block;
  font-size: 0.88rem;
  line-height: 1.55;
}

.cause-card {
  background: #fff;
  border: 1px solid var(--omf-line);
  border-radius: var(--omf-radius-sm);
  box-shadow: 0 8px 25px rgba(15, 50, 40, 0.04);
  height: 100%;
  overflow: hidden;
  transition: transform var(--omf-transition), box-shadow var(--omf-transition);
}

.cause-card:hover {
  box-shadow: var(--omf-shadow-sm);
  transform: translateY(-8px);
}

.cause-media {
  height: 285px;
  overflow: hidden;
  position: relative;
}

.cause-media::after {
  background: linear-gradient(0deg, rgba(10, 39, 31, 0.52), transparent 60%);
  content: "";
  inset: 0;
  position: absolute;
}

.cause-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  width: 100%;
}

.cause-card:hover .cause-media img {
  transform: scale(1.06);
}

.cause-number {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.85rem;
  left: 19px;
  position: absolute;
  top: 16px;
  z-index: 2;
}

.cause-icon {
  align-items: center;
  background: var(--omf-gold);
  border: 5px solid #fff;
  border-radius: 50%;
  bottom: -25px;
  color: var(--omf-green-950);
  display: flex;
  font-size: 1.15rem;
  height: 62px;
  justify-content: center;
  position: absolute;
  right: 22px;
  width: 62px;
  z-index: 2;
}

.cause-content {
  padding: 32px 25px 27px;
}

.cause-content h3 {
  font-size: 1.55rem;
  margin-bottom: 12px;
}

.cause-content p {
  color: var(--omf-muted);
  font-size: 0.91rem;
  line-height: 1.65;
}

.cause-link {
  align-items: center;
  color: var(--omf-green-800);
  display: inline-flex;
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 8px;
  margin-top: 7px;
  text-decoration: none;
}

.cause-link i {
  transition: transform var(--omf-transition);
}

.cause-link:hover i {
  transform: translateX(5px);
}

.impact-intro {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  padding-right: 5vw;
}

.stat-wrap {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 26px 0;
}

.stat-wrap:first-child,
.stat-wrap:nth-child(2) {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-number {
  color: var(--omf-gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.66);
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-top: 10px;
  text-transform: uppercase;
}

.transparency-note {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  display: flex;
  gap: 13px;
  margin-top: 30px;
  padding: 17px;
}

.transparency-note i {
  color: var(--omf-gold-light);
  margin-top: 3px;
}

.transparency-note p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.55;
}

.process-card {
  border-top: 1px solid var(--omf-line);
  padding: 35px 25px 10px 0;
  position: relative;
}

.process-number {
  color: var(--omf-gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.86rem;
  font-weight: 700;
  left: 0;
  position: absolute;
  top: 12px;
}

.process-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.process-card p {
  color: var(--omf-muted);
  font-size: 0.9rem;
}

.story-panel {
  background: var(--omf-green-800);
  border-radius: var(--omf-radius);
  box-shadow: var(--omf-shadow);
  color: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.story-image {
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  width: 100%;
}

.story-copy {
  padding: clamp(42px, 7vw, 86px);
}

.story-copy h2 {
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin-bottom: 25px;
}

.story-quote {
  color: var(--omf-gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  margin: 28px 0;
}

.gallery-filter {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-end;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--omf-line);
  border-radius: 999px;
  color: var(--omf-muted);
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 16px;
  transition: var(--omf-transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--omf-green-800);
  border-color: var(--omf-green-800);
  color: #fff;
}

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

.gallery-item {
  border-radius: 18px;
  cursor: pointer;
  display: block;
  overflow: hidden;
  position: relative;
  transition: opacity 220ms ease, transform 220ms ease;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item::after {
  background: linear-gradient(0deg, rgba(10, 39, 31, 0.76), transparent 55%);
  content: "";
  inset: 0;
  opacity: 0.72;
  position: absolute;
  transition: opacity var(--omf-transition);
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  width: 100%;
}

.gallery-item:hover img {
  transform: scale(1.055);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-caption {
  bottom: 15px;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  left: 17px;
  position: absolute;
  right: 48px;
  z-index: 2;
}

.gallery-open {
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  bottom: 13px;
  color: #fff;
  display: flex;
  height: 34px;
  justify-content: center;
  position: absolute;
  right: 13px;
  width: 34px;
  z-index: 2;
}

.gallery-modal .modal-content {
  background: transparent;
  border: 0;
}

.gallery-modal .modal-body {
  padding: 0;
}

.gallery-modal img {
  border-radius: 18px;
  max-height: 82vh;
  object-fit: contain;
  width: 100%;
}

.gallery-modal .btn-close {
  background-color: #fff;
  border-radius: 50%;
  opacity: 1;
  padding: 10px;
  position: absolute;
  right: 8px;
  top: -46px;
}

.donate-banner {
  background: var(--omf-gold);
  border-radius: var(--omf-radius);
  color: var(--omf-green-950);
  overflow: hidden;
  padding: clamp(38px, 6vw, 70px);
  position: relative;
}

.donate-banner::after {
  border: 1px solid rgba(20, 61, 50, 0.18);
  border-radius: 50%;
  content: "";
  height: 330px;
  position: absolute;
  right: -80px;
  top: -145px;
  width: 330px;
}

.donate-banner h2 {
  font-size: clamp(2.35rem, 4vw, 4rem);
  margin-bottom: 16px;
  max-width: 780px;
}

.donate-banner p {
  color: rgba(10, 39, 31, 0.75);
  max-width: 710px;
}

.donate-banner .btn-green {
  box-shadow: none;
  position: relative;
  z-index: 2;
}

.voice-card {
  background: #fff;
  border: 1px solid var(--omf-line);
  border-radius: var(--omf-radius-sm);
  height: 100%;
  padding: 30px;
  position: relative;
}

.voice-card::before {
  color: var(--omf-gold);
  content: "“";
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4rem;
  left: 27px;
  line-height: 1;
  position: absolute;
  top: 20px;
}

.voice-card blockquote {
  color: var(--omf-green-900);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.58;
  margin: 48px 0 25px;
}

.voice-meta {
  align-items: center;
  border-top: 1px solid var(--omf-line);
  display: flex;
  gap: 12px;
  padding-top: 20px;
}

.voice-avatar {
  align-items: center;
  background: var(--omf-green-800);
  border-radius: 50%;
  color: var(--omf-gold-light);
  display: flex;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  height: 43px;
  justify-content: center;
  width: 43px;
}

.voice-meta strong {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.83rem;
}

.voice-meta span {
  color: var(--omf-muted);
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.69rem;
}

.form-panel {
  background: #fff;
  border: 1px solid var(--omf-line);
  border-radius: var(--omf-radius);
  box-shadow: var(--omf-shadow-sm);
  padding: clamp(28px, 5vw, 52px);
}

.form-label {
  color: var(--omf-green-950);
  font-family: "DM Sans", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 7px;
}

.form-control,
.form-select {
  background-color: #fbfaf6;
  border: 1px solid rgba(20, 61, 50, 0.18);
  border-radius: 12px;
  color: var(--omf-ink);
  min-height: 52px;
  padding: 12px 14px;
}

textarea.form-control {
  min-height: 132px;
}

.form-control:focus,
.form-select:focus {
  background-color: #fff;
  border-color: var(--omf-green-600);
  box-shadow: 0 0 0 0.22rem rgba(50, 114, 93, 0.12);
}

.form-check-input:checked {
  background-color: var(--omf-green-700);
  border-color: var(--omf-green-700);
}

.form-check-label {
  color: var(--omf-muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.volunteer-aside {
  background: var(--omf-green-950);
  border-radius: var(--omf-radius);
  color: rgba(255, 255, 255, 0.69);
  height: 100%;
  overflow: hidden;
  padding: clamp(35px, 5vw, 55px);
  position: relative;
}

.volunteer-aside::after {
  background: url("../images/tree-volunteers.webp") center / cover;
  content: "";
  inset: 55% 0 0;
  opacity: 0.28;
  position: absolute;
}

.volunteer-aside > * {
  position: relative;
  z-index: 2;
}

.volunteer-aside h2 {
  color: #fff;
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  margin-bottom: 22px;
}

.check-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.check-list li {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  gap: 11px;
  padding: 14px 0;
}

.check-list i {
  color: var(--omf-gold-light);
}

.accordion-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--omf-line);
}

.accordion-button {
  background: transparent !important;
  box-shadow: none !important;
  color: var(--omf-green-950);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 23px 0;
}

.accordion-button:not(.collapsed) {
  color: var(--omf-green-700);
}

.accordion-button::after {
  background-size: 15px;
}

.accordion-body {
  color: var(--omf-muted);
  font-size: 0.92rem;
  padding: 0 0 23px;
}

.contact-card {
  background: var(--omf-green-950);
  border-radius: var(--omf-radius);
  color: rgba(255, 255, 255, 0.65);
  height: 100%;
  padding: clamp(34px, 5vw, 55px);
}

.contact-card h2 {
  color: #fff;
  font-size: clamp(2.25rem, 4vw, 3.8rem);
}

.contact-item {
  align-items: flex-start;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 15px;
  padding: 20px 0;
}

.contact-item:first-of-type {
  margin-top: 30px;
}

.contact-item-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--omf-gold-light);
  display: flex;
  flex: 0 0 42px;
  height: 42px;
  justify-content: center;
}

.contact-item span {
  color: rgba(255, 255, 255, 0.52);
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item strong {
  color: #fff;
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 3px;
  text-decoration: none;
  word-break: break-word;
}

.social-link {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  transition: var(--omf-transition);
  width: 42px;
}

.social-link:hover {
  background: var(--omf-gold);
  border-color: var(--omf-gold);
  color: var(--omf-green-950);
  transform: translateY(-2px);
}

.site-footer {
  background: #071c17;
  color: rgba(255, 255, 255, 0.58);
  padding: 74px 0 26px;
}

.site-footer .brand-name {
  color: #fff;
}

.site-footer .brand-short {
  color: var(--omf-gold-light);
}

.footer-about {
  font-size: 0.86rem;
  margin-top: 20px;
  max-width: 380px;
}

.footer-title {
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  margin-bottom: 19px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.83rem;
  text-decoration: none;
  transition: color var(--omf-transition);
}

.footer-links a:hover {
  color: var(--omf-gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-family: "DM Sans", sans-serif;
  font-size: 0.69rem;
  margin-top: 55px;
  padding-top: 23px;
}

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.68rem;
  line-height: 1.55;
  margin-top: 25px;
  max-width: 950px;
}

.whatsapp-float {
  align-items: center;
  background: #25d366;
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  bottom: 22px;
  box-shadow: 0 11px 26px rgba(7, 28, 23, 0.22);
  color: #fff;
  display: flex;
  font-size: 1.45rem;
  height: 58px;
  justify-content: center;
  position: fixed;
  right: 22px;
  text-decoration: none;
  transition: var(--omf-transition);
  width: 58px;
  z-index: 1030;
}

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-4px) scale(1.02);
}

.back-to-top {
  align-items: center;
  background: var(--omf-green-800);
  border: 0;
  border-radius: 50%;
  bottom: 89px;
  color: #fff;
  display: flex;
  height: 42px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 30px;
  transform: translateY(10px);
  transition: var(--omf-transition);
  width: 42px;
  z-index: 1020;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast-container {
  z-index: 2000;
}

.omf-toast {
  background: var(--omf-green-950);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 80ms;
}

.delay-2 {
  transition-delay: 160ms;
}

.delay-3 {
  transition-delay: 240ms;
}

/* Donation page */
.page-hero {
  background: var(--omf-green-950);
  color: rgba(255, 255, 255, 0.72);
  overflow: hidden;
  padding: 110px 0 100px;
  position: relative;
}

.page-hero::before {
  background: radial-gradient(circle at center, rgba(214, 174, 98, 0.15), transparent 68%);
  content: "";
  height: 540px;
  position: absolute;
  right: -90px;
  top: -230px;
  width: 540px;
}

.page-hero .breadcrumb {
  --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.42);
  --bs-breadcrumb-item-active-color: var(--omf-gold-light);
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(3rem, 6vw, 6rem);
  margin: 25px 0;
}

.page-hero p {
  font-size: 1.06rem;
  max-width: 700px;
}

.donation-card {
  background: #fff;
  border: 1px solid var(--omf-line);
  border-radius: var(--omf-radius);
  box-shadow: var(--omf-shadow);
  overflow: hidden;
}

.donation-card-head {
  background: var(--omf-green-800);
  color: rgba(255, 255, 255, 0.68);
  padding: 32px;
}

.donation-card-head h2 {
  color: #fff;
  font-size: 2rem;
}

.donation-card-body {
  padding: clamp(25px, 5vw, 45px);
}

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

.amount-btn {
  background: #fbfaf6;
  border: 1px solid var(--omf-line);
  border-radius: 12px;
  color: var(--omf-green-900);
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  min-height: 50px;
  transition: var(--omf-transition);
}

.amount-btn:hover,
.amount-btn.active {
  background: var(--omf-sage-soft);
  border-color: var(--omf-green-600);
}

.payment-tabs {
  border-bottom: 1px solid var(--omf-line);
  gap: 10px;
}

.payment-tabs .nav-link {
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--omf-muted);
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 13px 15px;
}

.payment-tabs .nav-link.active {
  background: transparent;
  border-bottom-color: var(--omf-gold);
  color: var(--omf-green-900);
}

.qr-shell {
  background: #fff;
  border: 1px solid var(--omf-line);
  border-radius: 18px;
  display: inline-flex;
  min-height: 240px;
  min-width: 240px;
  padding: 13px;
}

#upiQr img,
#upiQr canvas {
  height: 214px !important;
  width: 214px !important;
}

.upi-id {
  align-items: center;
  background: var(--omf-ivory);
  border-radius: 12px;
  display: flex;
  font-family: "DM Sans", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  gap: 9px;
  justify-content: space-between;
  margin: 18px auto 0;
  max-width: 330px;
  padding: 12px 14px;
}

.copy-btn {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--omf-green-700);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.bank-list {
  border: 1px solid var(--omf-line);
  border-radius: 16px;
  overflow: hidden;
}

.bank-row {
  align-items: center;
  border-bottom: 1px solid var(--omf-line);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 16px 18px;
}

.bank-row:last-child {
  border-bottom: 0;
}

.bank-row span {
  color: var(--omf-muted);
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bank-row strong {
  color: var(--omf-green-950);
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
}

.trust-card {
  background: var(--omf-ivory);
  border-radius: var(--omf-radius);
  padding: 32px;
}

.trust-point {
  align-items: flex-start;
  border-bottom: 1px solid var(--omf-line);
  display: flex;
  gap: 14px;
  padding: 18px 0;
}

.trust-point:last-child {
  border-bottom: 0;
}

.trust-point i {
  color: var(--omf-green-600);
  margin-top: 4px;
}

.trust-point strong {
  color: var(--omf-green-950);
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.86rem;
}

.trust-point span {
  color: var(--omf-muted);
  display: block;
  font-size: 0.79rem;
  line-height: 1.45;
  margin-top: 3px;
}

.donation-disclaimer {
  background: rgba(214, 174, 98, 0.13);
  border: 1px solid rgba(214, 174, 98, 0.4);
  border-radius: 12px;
  color: #70572b;
  font-size: 0.74rem;
  line-height: 1.5;
  padding: 13px 15px;
}

.impact-option {
  align-items: center;
  border: 1px solid var(--omf-line);
  border-radius: 16px;
  display: flex;
  gap: 14px;
  height: 100%;
  padding: 18px;
}

.impact-option-icon {
  align-items: center;
  background: var(--omf-sage-soft);
  border-radius: 50%;
  color: var(--omf-green-700);
  display: flex;
  flex: 0 0 45px;
  height: 45px;
  justify-content: center;
}

.impact-option strong {
  color: var(--omf-green-950);
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
}

.impact-option span {
  color: var(--omf-muted);
  display: block;
  font-size: 0.72rem;
}

@media (max-width: 1199.98px) {
  .site-navbar .nav-link {
    padding-inline: 8px !important;
  }

  .hero-content {
    padding-left: 28px;
  }

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

@media (max-width: 991.98px) {
  .section-space {
    padding: 88px 0;
  }

  .navbar-collapse {
    background: var(--omf-paper);
    border-top: 1px solid var(--omf-line);
    left: 0;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    padding: 20px 24px 28px;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .site-navbar .nav-link {
    border-bottom: 1px solid var(--omf-line);
    padding: 13px 0 !important;
  }

  .site-navbar .nav-link::after {
    display: none;
  }

  .nav-donate {
    margin-top: 18px;
    width: 100%;
  }

  .hero,
  .hero .container-fluid {
    min-height: auto;
  }

  .hero-content {
    padding: 90px 30px 75px;
  }

  .hero-media {
    min-height: 570px;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(10, 39, 31, 0.42), transparent 45%);
  }

  .hero-stamp {
    left: 24px;
  }

  .about-visual {
    margin-bottom: 55px;
  }

  .impact-intro {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    border-right: 0;
    margin-bottom: 45px;
    padding: 0 0 40px;
  }

  .gallery-filter {
    justify-content: flex-start;
    margin-top: 24px;
  }

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

  .gallery-item.wide {
    grid-column: span 1;
  }

  .volunteer-aside {
    min-height: 530px;
  }
}

@media (max-width: 767.98px) {
  .section-space {
    padding: 72px 0;
  }

  .section-space-sm {
    padding: 60px 0;
  }

  .top-note {
    font-size: 0.67rem;
  }

  .brand-mark {
    height: 43px;
    width: 43px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .hero-content {
    padding: 75px 20px 65px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  .hero-media {
    min-height: 460px;
  }

  .hero-trust {
    gap: 14px 18px;
    margin-top: 38px;
  }

  .about-visual {
    min-height: 515px;
  }

  .about-image-main {
    height: 455px;
    width: 91%;
  }

  .about-image-float {
    height: 185px;
    width: 48%;
  }

  .about-seal {
    height: 110px;
    left: 70%;
    top: 35px;
    width: 110px;
  }

  .about-seal strong {
    font-size: 1.7rem;
  }

  .cause-media {
    height: 260px;
  }

  .story-image {
    min-height: 380px;
  }

  .gallery-grid {
    grid-auto-rows: 180px;
  }

  .donate-banner {
    border-radius: 20px;
  }

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

  .page-hero {
    padding: 80px 0 75px;
  }
}

@media (max-width: 575.98px) {
  body {
    font-size: 0.96rem;
  }

  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-stamp {
    bottom: 18px;
    left: 18px;
    right: 18px;
  }

  .hero-media {
    min-height: 390px;
  }

  .hero-media img {
    transform: none;
  }

  .hero-buttons .btn {
    justify-content: center;
    width: 100%;
  }

  .gallery-grid {
    display: block;
  }

  .gallery-item {
    height: 270px;
    margin-bottom: 14px;
  }

  .gallery-item.tall {
    height: 390px;
  }

  .form-panel {
    border-radius: 20px;
  }

  .contact-card,
  .volunteer-aside,
  .story-panel,
  .donation-card,
  .trust-card {
    border-radius: 20px;
  }

  .whatsapp-float {
    bottom: 17px;
    right: 17px;
  }

  .back-to-top {
    right: 25px;
  }

  .bank-row {
    align-items: flex-start;
  }

  .qr-shell {
    min-height: 224px;
    min-width: 224px;
  }

  #upiQr img,
  #upiQr canvas {
    height: 198px !important;
    width: 198px !important;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
