/* ── RESET / BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #FFFFFF;
  color: #1A2E26;
  overflow-x: hidden;
}

/* ── GALLERY LIGHTBOX (shared) ── */
.gl-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.gl-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  padding: 0 3.5rem;
}
.gl-main-img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.gl-btn {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.gl-btn:hover { background: rgba(255,255,255,0.25); }
.gl-btn-prev { left: 0; }
.gl-btn-next { right: 0; }
.gl-counter {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.85rem;
  letter-spacing: 0.1em;
}
.gl-thumbs {
  display: flex;
  gap: 6px;
  margin-top: 0.85rem;
  overflow-x: auto;
  max-width: 90vw;
  padding: 0.4rem 0.5rem;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.gl-thumb {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s;
}
.gl-thumb:hover, .gl-thumb.active { opacity: 1; }
.gl-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  opacity: 0.7;
  padding: 6px;
}
.gl-close:hover { opacity: 1; }
@media (max-width: 480px) {
  .gl-img-wrap { padding: 0 2.75rem; }
  .gl-btn { width: 36px; height: 36px; }
  .gl-main-img { max-height: 60vh; border-radius: 6px; }
  .gl-thumb { width: 44px; height: 44px; }
}

/* ── GRAIN TEXTURE ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ── TYPOGRAPHY HELPERS ── */
.display { font-family: 'Cormorant Garamond', Georgia, serif; }
.heading  { font-family: 'Playfair Display', Georgia, serif; }
.label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #C8963C;
}
.gold-rule {
  width: 2.5rem;
  height: 2px;
  background: linear-gradient(90deg, #C8963C, #E8B866);
  border-radius: 2px;
}

/* ── LOGO ── */
.logo-mark { line-height: 1; text-decoration: none; }
.logo-mark .top {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1A4A30;
  line-height: 1;
}
.logo-mark .sub {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.47rem;
  letter-spacing: 0.58em;
  text-transform: uppercase;
  color: #C8963C;
  padding-left: 0.06em;
  line-height: 1.6;
}

/* ── NAV ── */
.nav-wrap {
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(26, 74, 48, 0.1);
  transition: padding 0.3s ease;
}
.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(8, 26, 16, 0.75);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: #C8963C;
  transition: width 0.3s ease;
}
.nav-link:hover { color: #1A4A30; }
.nav-link:hover::after { width: 100%; }

/* ── BUTTONS ── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  padding: 0.875rem 1.875rem;
  transition:
    transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.25s ease;
}
.btn:focus-visible {
  outline: 2px solid #C8963C;
  outline-offset: 3px;
}
.btn:active { transform: translateY(1px) !important; }
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  transition: left 0.55s ease;
}
.btn:hover::before { left: 110%; }

.btn-forest {
  background: linear-gradient(135deg, #1A4A30 0%, #2A7A50 100%);
  color: #fff;
}
.btn-forest::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}
.btn-forest:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px -10px rgba(26,74,48,0.55),
    0 4px 12px -4px rgba(26,74,48,0.3);
}

.btn-gold {
  background: linear-gradient(135deg, #C8963C 0%, #E8B866 100%);
  color: #081A10;
  font-weight: 600;
}
.btn-gold::before {
  width: 55%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px -10px rgba(200,150,60,0.55),
    0 4px 12px -4px rgba(200,150,60,0.3);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost::before {
  background: rgba(255,255,255,0.07);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.65);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -6px rgba(0,0,0,0.25);
}

.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.67rem; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #081A10;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.65) 100%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,150,60,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,150,60,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
@keyframes orb {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-28px) scale(1.06); }
}
.orb1 { animation: orb 9s ease-in-out infinite; }
.orb2 { animation: orb 11s ease-in-out infinite; animation-delay: -3.5s; }
.orb3 { animation: orb 13s ease-in-out infinite; animation-delay: -7s; }

/* ── VALUE ICON ANIMATIONS ── */
@keyframes heartbeat {
  0%,100% { transform: scale(1); }
  14%      { transform: scale(1.3); }
  28%      { transform: scale(1); }
  42%      { transform: scale(1.18); }
  56%      { transform: scale(1); }
}
.heart-beat, .icon-bob, .icon-spin, .icon-pulse {
  display: block;
  transform-origin: center;
}
.val-card:hover .heart-beat { animation: heartbeat 1.6s ease-in-out infinite; }
.val-card:hover .icon-bob   { animation: bob 2.2s ease-in-out infinite; }
.val-card:hover .icon-spin  { animation: spin-slow 3s linear infinite; }
.val-card:hover .icon-pulse { animation: pulse-scale 1s ease-in-out infinite; }
@keyframes bob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes pulse-scale {
  0%,100% { transform: scale(1);    opacity: 1; }
  50%      { transform: scale(1.18); opacity: 0.8; }
}

/* ── HERO TEXT ENTRANCE ── */
@keyframes hIn {
  from { opacity:0; transform:translateY(36px); filter:blur(5px); }
  to   { opacity:1; transform:translateY(0);    filter:blur(0); }
}
.h1 { animation: hIn 1.1s cubic-bezier(0.16,1,0.3,1) 0.25s both; }
.h2 { animation: hIn 1.1s cubic-bezier(0.16,1,0.3,1) 0.45s both; }
.h3 { animation: hIn 1.1s cubic-bezier(0.16,1,0.3,1) 0.65s both; }
.h4 { animation: hIn 1.1s cubic-bezier(0.16,1,0.3,1) 0.85s both; }

/* ── SCROLL MOUSE ── */
@keyframes mouse-scroll {
  0%,100% { transform:translateY(0); opacity:1; }
  60%      { transform:translateY(7px); opacity:0.4; }
}
.scroll-dot { animation: mouse-scroll 2s ease-in-out infinite; }

/* ── FADE-UP SCROLL ── */
.fu {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.fu.vis { opacity:1; transform:translateY(0); }
.fu.d1 { transition-delay: 0.1s; }
.fu.d2 { transition-delay: 0.2s; }
.fu.d3 { transition-delay: 0.3s; }
.fu.d4 { transition-delay: 0.4s; }

/* ── SECTION BACKGROUNDS ── */
.bg-cream {
  background: #F9F7F4;
  background-image:
    radial-gradient(ellipse at 8% 80%, rgba(26,74,48,0.04) 0%, transparent 55%),
    radial-gradient(ellipse at 92% 10%, rgba(200,150,60,0.05) 0%, transparent 50%);
}
.bg-dark {
  background: #081A10;
  background-image:
    radial-gradient(ellipse at 18% 50%, rgba(30,120,65,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 82% 20%, rgba(200,150,60,0.09) 0%, transparent 55%);
}
.bg-forest-grad {
  background: linear-gradient(135deg, #1A4A30 0%, #081A10 100%);
}

/* ── VALUE CARDS ── */
.val-card {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid rgba(26,74,48,0.07);
  box-shadow:
    0 1px 3px rgba(26,74,48,0.06),
    0 4px 18px -4px rgba(26,74,48,0.08);
  transition:
    transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.3s ease;
}
.val-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 10px 32px -6px rgba(26,74,48,0.18),
    0 2px 8px -2px rgba(26,74,48,0.08);
}
.val-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(26,74,48,0.09), rgba(26,74,48,0.04));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}

/* ── EVENT CARDS ── */
.ev-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(26,74,48,0.06),
    0 4px 18px -4px rgba(26,74,48,0.1);
  transition:
    transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.3s ease;
}
.ev-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px -8px rgba(26,74,48,0.2); }
.ev-card img { transition: transform 0.55s ease; display: block; width:100%; height:100%; object-fit:cover; }
.ev-card:hover img { transform: scale(1.06); }

/* ── TEAM CARDS ── */
.team-card {
  background: #fff;
  border: 1px solid rgba(26,74,48,0.1);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 12px -4px rgba(26,74,48,0.1);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.team-card:hover {
  border-color: rgba(200,150,60,0.45);
  box-shadow: 0 10px 32px -8px rgba(26,74,48,0.18);
  transform: translateY(-4px);
}

/* ── FORM ── */
.form-field {
  width: 100%;
  padding: 0.875rem 1rem;
  background: #fff;
  border: 1.5px solid rgba(26,74,48,0.14);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #1A2E26;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field::placeholder { color: #9DB5AA; }
.form-field:focus {
  border-color: #1A4A30;
  box-shadow: 0 0 0 3px rgba(26,74,48,0.1);
}
.form-field.wan-invalid {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.09) !important;
}
.wan-error {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: #c0392b;
  margin-top: 0.25rem;
  display: none;
}
.wan-error.visible { display: block; }
.wan-phone-row { display: flex; gap: 0.5rem; }
.wan-phone-row select.form-field { flex: 0 0 auto; width: 154px; padding-right: 0.5rem; }
.wan-phone-row input.form-field  { flex: 1; min-width: 0; }

/* ── QUOTE ── */
.big-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  line-height: 0.6;
  color: rgba(200,150,60,0.22);
  font-style: italic;
  user-select: none;
}

/* ── SNAPSHOT ICON ANIMATIONS ── */
@keyframes tickTock {
  0%,100% { transform: rotate(-12deg); }
  50%      { transform: rotate(12deg); }
}
@keyframes floatDrift {
  0%,100% { transform: translateY(0px) rotate(-2deg); }
  50%      { transform: translateY(-5px) rotate(2deg); }
}
.icon-tick  { animation: tickTock   2.4s ease-in-out infinite; transform-origin: center; }
.icon-float { animation: floatDrift 3s   ease-in-out infinite; }
@keyframes bookBreath {
  0%,100% { transform: scaleX(1)   skewY(0deg);  opacity: 1; }
  40%      { transform: scaleX(0.88) skewY(3deg);  opacity: 0.75; }
  60%      { transform: scaleX(1.06) skewY(-2deg); opacity: 1; }
}
@keyframes nodePing {
  0%,100% { transform: scale(1);    opacity: 1; }
  30%      { transform: scale(1.28); opacity: 0.6; }
  60%      { transform: scale(0.88); opacity: 1; }
}
@keyframes nodePingDelay {
  0%,100% { transform: scale(1);    opacity: 1; }
  45%      { transform: scale(1.28); opacity: 0.6; }
  75%      { transform: scale(0.88); opacity: 1; }
}
.icon-book  { animation: bookBreath 3.2s ease-in-out infinite; transform-origin: center; }
.icon-net   { animation: nodePing      2.8s ease-in-out infinite; transform-origin: center; }
.icon-net circle:nth-child(2) { animation: nodePingDelay 2.8s ease-in-out infinite; transform-origin: 4px 19px; transform-box: fill-box; }
.icon-net circle:nth-child(3) { animation: nodePingDelay 2.8s ease-in-out 0.4s infinite; transform-origin: 20px 19px; transform-box: fill-box; }

/* ── STAT BAR ── */
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: #081A10;
  line-height: 1;
}

/* ── PILLAR TABS ── */
.pillar-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.pillar-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 1.5rem;
  background: white;
  border: 1.5px solid rgba(26,74,48,0.09);
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.pillar-tab:hover { transform: translateY(-2px); box-shadow: 0 6px 20px -6px rgba(26,74,48,0.12); }
.pillar-tab.p-active { border-color: var(--pc); box-shadow: 0 0 0 1px var(--pc), 0 8px 24px -8px rgba(26,74,48,0.15); }

#ptab-1 { background: rgba(26,74,48,0.12); border-color: rgba(26,74,48,0.2); }
#ptab-1.p-active { background: #1A4A30; }
#ptab-1.p-active .pillar-name { color: #fff; }
#ptab-1.p-active .pillar-num { color: rgba(255,255,255,0.7) !important; }

#ptab-2 { background: rgba(200,150,60,0.14); border-color: rgba(200,150,60,0.25); }
#ptab-2.p-active { background: #C8963C; }
#ptab-2.p-active .pillar-name { color: #fff; }
#ptab-2.p-active .pillar-num { color: rgba(255,255,255,0.7) !important; }

#ptab-3 { background: rgba(42,122,80,0.12); border-color: rgba(42,122,80,0.2); }
#ptab-3.p-active { background: #2A7A50; }
#ptab-3.p-active .pillar-name { color: #fff; }
#ptab-3.p-active .pillar-num { color: rgba(255,255,255,0.7) !important; }

.pillar-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pillar-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.pillar-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #081A10;
  line-height: 1.3;
}
.pillar-panel { display: none; }
.pillar-panel.p-active { display: block; }

/* ── ACCORDION ── */
.acc-item { border-bottom: 1px solid rgba(26,74,48,0.08); }
.acc-item:first-child { border-top: 1px solid rgba(26,74,48,0.08); }
.acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.acc-btn .acc-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1A2E26;
}
.acc-btn .chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #9DB5AA;
}
.acc-btn.open .chevron { transform: rotate(180deg); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1);
}
.acc-body.open { max-height: 120px; }
.acc-body p {
  font-size: 0.855rem;
  color: #243C2C;
  line-height: 1.75;
  font-weight: 400;
  padding-bottom: 1rem;
}

/* ── SELECT DROPDOWN ARROW ── */
select.form-field {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239DB5AA' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}

/* ── PARTNER TYPE TOGGLE ── */
.partner-toggle {
  display: inline-flex;
  background: rgba(26,74,48,0.08);
  border-radius: 6px;
  padding: 4px;
}
.partner-tog-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1A2E26;
  padding: 0.65rem 1.75rem;
  border: none;
  background: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.partner-tog-btn.active { background: #1A4A30; color: #fff; }

/* ── DONATE PACKAGE CARDS ── */
.donate-pkg {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: #fff;
  border: 1.5px solid rgba(26,74,48,0.12);
  border-radius: 8px;
  padding: 1rem 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.donate-pkg:hover {
  border-color: rgba(26,74,48,0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -6px rgba(26,74,48,0.15);
}
.donate-pkg.selected {
  border-color: #1A4A30;
  background: rgba(26,74,48,0.04);
  box-shadow: 0 0 0 3px rgba(26,74,48,0.08);
}
.pkg-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #C8963C;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.pkg-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1A4A30;
  margin-bottom: 0.4rem;
}
.pkg-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #6B8A7E;
  line-height: 1.55;
  font-weight: 300;
}
@media (max-width: 480px) {
  .donate-pkg { padding: 0.85rem 0.9rem; }
  .pkg-amount { font-size: 1.1rem; }
}

/* ── DONATE AMOUNT BUTTONS ── */
.donate-amt-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #1A2E26;
  padding: 0.75rem 0.5rem;
  border: 1.5px solid rgba(26,74,48,0.18);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.donate-amt-btn:hover { border-color: #1A4A30; transform: translateY(-2px); }
.donate-amt-btn.selected { border-color: #1A4A30; background: #1A4A30; color: #fff; }

/* ── FREQUENCY TOGGLE ── */
.freq-toggle {
  display: inline-flex;
  background: rgba(26,74,48,0.06);
  border-radius: 6px;
  padding: 4px;
}
.freq-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4A6358;
  padding: 0.65rem 1.5rem;
  border: none;
  background: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.freq-btn.active { background: #1A4A30; color: #fff; }

/* ── MOBILE MENU ── */
.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,26,16,0.97);
  z-index: 997;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mob-menu.open { display: flex; }
.mob-menu .nav-link {
  font-size: 1.1rem;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.8);
}

/* ── HAMBURGER ── */
.ham span {
  display: block;
  height: 1.5px;
  background: #1A4A30;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── DECORATIVE CORNERS ── */
.corner-tl {
  position: absolute; top: -1.5rem; left: -1.5rem;
  width: 4.5rem; height: 4.5rem;
  border-top: 2px solid #C8963C;
  border-left: 2px solid #C8963C;
}
.corner-br {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 4.5rem; height: 4.5rem;
  border-bottom: 2px solid #C8963C;
  border-right: 2px solid #C8963C;
}

/* ── MODALS ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,26,16,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999;
  overflow-y: auto;
  padding: 2rem 1.5rem;
}
.modal-overlay.open { display: block; }
.modal-box {
  background: #fff;
  border-radius: 10px;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  padding: 2.5rem;
  position: relative;
  box-shadow:
    0 32px 80px -16px rgba(0,0,0,0.55),
    0 8px 24px -8px rgba(0,0,0,0.25);
  animation: modalIn 0.3s cubic-bezier(0.16,1,0.3,1);
}
@keyframes modalIn {
  from { opacity:0; transform:translateY(24px) scale(0.97); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}
.modal-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(26,74,48,0.07);
  border: none; border-radius: 50%;
  cursor: pointer; color: #4A6358;
  transition: background 0.2s, transform 0.2s;
}
.modal-close:hover { background: rgba(26,74,48,0.14); transform: scale(1.1); }

/* ── COLLAPSIBLE TEAM SECTIONS ── */
.team-collapse-btn {
  display: flex; align-items: center; gap: 1rem;
  width: 100%; background: none; border: none;
  cursor: pointer; padding: 0;
  justify-content: center;
}
.team-collapse-btn:hover .team-collapse-label { color: #C8963C; }
.team-collapse-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #1A4A30; white-space: nowrap;
  transition: color 0.2s;
}
.team-collapse-line {
  flex: 1; height: 1px; background: rgba(26,74,48,0.2);
}
.team-section-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
}
.team-section-header span {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  white-space: nowrap;
}
.team-section-line {
  flex: 1; height: 1px;
}
.team-collapse-chevron {
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  color: #1A4A30;
}
.team-collapse-btn.open .team-collapse-chevron {
  transform: rotate(180deg);
}
.team-collapse-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1),
              opacity 0.35s ease;
  opacity: 0;
}
.team-collapse-body.open {
  max-height: 1200px;
  opacity: 1;
  overflow-x: auto;
}

/* ── PERSON MODAL ── */
.person-modal-photo {
  width: 160px; height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 2px solid rgba(200,150,60,0.5);
  box-shadow: 0 0 0 4px rgba(200,150,60,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.person-modal-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(0.88);
  display: block;
}
.person-modal-bio {
  font-size: 0.875rem;
  color: #4A6358;
  line-height: 1.8;
  font-weight: 300;
  margin-top: 1rem;
  min-height: 2rem;
}
.person-modal-bio:empty::before {
  content: 'Bio coming soon.';
  opacity: 0.45;
  font-style: italic;
}

/* ── GET INVOLVED BOX BUTTON ── */
.gi-box {
  display: inline-block;
  width: auto;
  min-width: 140px;
  padding: 0.875rem 1.875rem;
  transition: .5s linear;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: transparent;
  text-transform: uppercase;
  font-weight: 900;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: #081A10;
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  vertical-align: middle;
}
.gi-box:before {
  position: absolute;
  content: '';
  left: 0; bottom: 0;
  height: 4px; width: 100%;
  border-bottom: 4px solid transparent;
  border-left: 4px solid transparent;
  box-sizing: border-box;
  transform: translateX(100%);
}
.gi-box:after {
  position: absolute;
  content: '';
  top: 0; left: 0;
  width: 100%; height: 4px;
  border-top: 4px solid transparent;
  border-right: 4px solid transparent;
  box-sizing: border-box;
  transform: translateX(-100%);
}
.gi-box:hover {
  box-shadow: 0 5px 15px rgba(200,150,60,0.35);
  color: #081A10;
}
.gi-box:hover:before {
  border-color: #C8963C;
  height: 100%;
  transform: translateX(0);
  transition: .3s transform linear, .3s height linear .3s;
}
.gi-box:hover:after {
  border-color: #C8963C;
  height: 100%;
  transform: translateX(0);
  transition: .3s transform linear, .3s height linear .5s;
}
.gi-box.gi-light { color: #C8963C; }
.gi-box.gi-light:hover { color: #C8963C; }

/* ── MISSION BUTTON ── */
.mission-btn {
  --color-background: #1A4A30;
  --color-background-hover: #2A7A50;
  --color-outline: rgba(26,74,48,0.3);
  --color-shadow: rgba(0,0,0,0.3);
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: none;
  border-radius: 100em;
  padding: 0.875rem 0 0.875rem 1.875rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-background);
  box-shadow: 0 0 0.5em 0 rgba(26,74,48,0.45);
  transition: 1s;
}
.mission-btn:active { transform: scale(0.95); }
.mission-btn:hover {
  outline: 0.1em solid transparent;
  outline-offset: 0.2em;
  box-shadow: 0 0 1.5em 0 rgba(26,74,48,0.55);
  animation: missionRipple 1s linear infinite, missionColorize 1s infinite;
  transition: 0.5s;
}
.mission-btn span { margin-right: 1em; transition: 0.5s; }
.mission-btn:hover span { text-shadow: 5px 5px 5px var(--color-shadow); }
.mission-btn:active span { text-shadow: none; }
.mission-btn svg {
  height: 0.8em;
  fill: #fff;
  margin-right: 1.25rem;
  position: relative;
  transition: 0.5s;
  overflow: hidden;
}
.mission-btn:hover svg {
  margin-right: 1.875rem;
  filter: drop-shadow(5px 5px 2.5px var(--color-shadow));
}
.mission-btn:active svg { filter: none; }
.mission-btn svg polygon:nth-child(1) { transition: 0.4s; transform: translateX(-60%); }
.mission-btn svg polygon:nth-child(2) { transition: 0.5s; transform: translateX(-30%); }
.mission-btn:hover svg polygon:nth-child(1) { transform: translateX(0%); animation: missionOpacity 1s infinite 0.5s; }
.mission-btn:hover svg polygon:nth-child(2) { transform: translateX(0%); animation: missionOpacity 1s infinite 0.25s; }
@keyframes missionOpacity {
  0%,100% { opacity: 1; } 50% { opacity: 0; }
}
@keyframes missionColorize {
  0%,100% { background: var(--color-background); } 50% { background: var(--color-background-hover); }
}
@keyframes missionRipple {
  0%   { outline: 0em solid transparent; outline-offset: -0.1em; }
  50%  { outline: 0.2em solid var(--color-outline); outline-offset: 0.2em; }
  100% { outline: 0.4em solid transparent; outline-offset: 0.4em; }
}
.mission-btn-gold {
  --color-background: #C8963C;
  --color-background-hover: #E8B866;
  --color-outline: rgba(200,150,60,0.4);
  --color-shadow: rgba(0,0,0,0.2);
  box-shadow: 0 0 0.5em 0 rgba(200,150,60,0.45);
}
.mission-btn-gold:hover {
  box-shadow: 0 0 1.5em 0 rgba(200,150,60,0.55);
}

/* ══ MOBILE RESPONSIVE ══ */
html { overflow-x: hidden; }

@media (min-width: 768px) and (max-width: 1024px) {
  .hero-content-pad { padding-top: 10rem !important; }
  #team-grid,
  .team-sub-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 1rem !important;
    padding-bottom: 1rem !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(200,150,60,0.35) transparent;
  }
  #team-grid {
    justify-content: flex-start !important;
  }
  #team-grid > div {
    flex: 0 0 180px !important;
    min-width: 180px !important;
    width: 180px !important;
  }
  .team-sub-grid > div {
    flex: 0 0 140px !important;
    min-width: 140px !important;
  }
}

@media (max-width: 767px) {
  #stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  #story-grid,
  #mission-grid,
  #join-grid,
  #donate-grid,
  #contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  #values-grid { grid-template-columns: repeat(2, 1fr) !important; }
  #team-grid,
  .team-sub-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 1rem !important;
    padding-bottom: 1rem !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(200,150,60,0.35) transparent;
  }
  #team-grid {
    justify-content: flex-start !important;
  }
  #team-grid > div {
    flex: 0 0 170px !important;
    min-width: 170px !important;
    width: 170px !important;
  }
  .team-sub-grid > div {
    flex: 0 0 130px !important;
    min-width: 130px !important;
  }
  .pillar-tabs { grid-template-columns: 1fr !important; }
  #footer-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .form-row { grid-template-columns: 1fr !important; }
  .acc-body.open { max-height: 220px !important; }
  .modal-box { padding: 1.75rem 1.25rem !important; }
  .modal-overlay { padding: 1rem !important; }
  .donate-pkg-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 420px) {
  .pm-detail-row { flex-wrap: wrap; gap: 0.2rem !important; }
  .pm-detail-row .pm-label { width: 100%; }
  .pm-detail-row .pm-value { margin-left: 0; }
  .team-card { padding: 1.25rem !important; }
  #values-grid { grid-template-columns: 1fr !important; }
  .pillar-tab { padding: 0.875rem !important; }
}
