/* ============================================================
   ICON-SP — Design System
   Signature: "The Thread" — a winding ribbon motif (echoing the
   logo's solidarity ribbon) that stitches sections together,
   representing Tri-People communities woven into one.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Work+Sans:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root{
  /* --- Palette --- */
  --forest:        #1F3D2B;
  --forest-deep:    #142A1D;
  --forest-light:  #2F5233;
  --river-teal:    #1F6E64;
  --river-teal-lt: #3B9187;
  --sky:           #5C8FA3;
  --sky-pale:      #C7DDE3;
  --gold:          #D9A441;
  --gold-light:    #EFC873;
  --terracotta:    #B85C2E;
  --earth:         #5C3D26;
  --charcoal:      #211E1A;
  --paper:         #F7F2E4;
  --paper-warm:    #F1E9D6;
  --ribbon-pink:   #DD4A87;
  --ribbon-orange: #EFA23B;
  --white:         #FFFEFC;

  /* --- Type --- */
  /* Century Gothic is a Monotype-owned commercial font. It is not on Google
     Fonts and cannot legally be embedded here without a paid Monotype web
     license. It's listed first so any visitor who already has it installed
     locally (it ships with many Windows/Office installs) will see true
     Century Gothic everywhere. Poppins — a free, geometric sans with a very
     similar circular, low-contrast character — is the fallback for everyone
     else, ahead of the site's original fonts. */
  --display: 'Century Gothic', 'Poppins', 'Aptos', 'Fraunces', serif;
  --body:    'Century Gothic', 'Poppins', 'Aptos', 'Work Sans', sans-serif;
  --mono:    'Century Gothic', 'Poppins', 'Aptos Mono', 'IBM Plex Mono', monospace;

  --radius-organic: 40% 60% 55% 45% / 45% 40% 60% 55%;
  --ease: cubic-bezier(.16,.84,.44,1);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  font-family: var(--body);
  background: var(--paper);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor:pointer; }

:focus-visible{
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.container{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

h1,h2,h3,h4{ font-family: var(--display); margin:0; font-weight:600; line-height:1.08; }
h1{ font-size: clamp(2.6rem, 6vw, 5.4rem); font-weight:500; }
h2{ font-size: clamp(2rem, 4vw, 3.2rem); }
h3{ font-size: clamp(1.3rem, 2vw, 1.7rem); }
p{ line-height:1.7; font-size:1.05rem; color:#3c3830; }

.eyebrow{
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--river-teal);
  display:flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:'';
  width: 22px;
  height: 2px;
  background: var(--gold);
  display:inline-block;
}

.serif-italic{ font-family: var(--display); font-style: italic; font-weight: 400; }

.hero, .page-hero{ scroll-margin-top: 90px; }

/* ============ LEADERSHIP: BOARD & STAFF ============ */
.board-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:22px; }
.board-card{
  background: var(--white); border-radius:22px; padding:30px 22px; text-align:center;
  box-shadow: 0 8px 26px rgba(31,61,43,.07); border:1px solid rgba(31,61,43,.06);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.board-card:hover{ transform: translateY(-6px); box-shadow: 0 18px 36px rgba(31,61,43,.13); }
.board-avatar{
  width:76px; height:76px; border-radius:50%; margin:0 auto 16px;
  background: linear-gradient(135deg, var(--forest-deep), var(--river-teal));
  color: var(--gold-light); display:flex; align-items:center; justify-content:center;
  font-family: var(--display); font-weight:700; font-size:1.25rem; letter-spacing:.02em;
}
.board-role{ font-family:var(--mono); font-size:.68rem; text-transform:uppercase; letter-spacing:.05em; color:var(--river-teal); margin:0 0 6px; }
.board-name{ font-family:var(--display); font-size:1rem; color:var(--forest-deep); margin:0; }

.staff-group-title{
  font-family:var(--display); font-size:1.35rem; color:var(--forest-deep);
  margin:0 0 22px; display:flex; align-items:center; gap:16px;
}
.staff-group-title::after{ content:''; flex:1; height:1px; background:rgba(31,61,43,.15); }

.project-team-label{
  font-family:var(--mono); font-size:.72rem; text-transform:uppercase; letter-spacing:.06em;
  color: var(--gold-light); background: var(--forest-deep); display:inline-block;
  padding:7px 16px; border-radius:20px; margin-bottom:18px;
}

.staff-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:20px; margin-bottom:44px; }
.staff-card{
  background: var(--white); border-radius:20px; padding:26px 18px; text-align:center;
  box-shadow: 0 6px 20px rgba(31,61,43,.06); border:1px solid rgba(31,61,43,.05);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.staff-card:hover{ transform: translateY(-4px); box-shadow: 0 14px 28px rgba(31,61,43,.1); }
.staff-photo-slot{
  width:82px; height:82px; border-radius:50%; margin:0 auto 14px;
  background: var(--paper-warm); border:2px dashed rgba(31,61,43,.22);
  display:flex; align-items:center; justify-content:center; color:#a3a398; overflow:hidden;
}
.staff-photo-slot svg{ width:30px; height:30px; stroke:#a3a398; fill:none; stroke-width:1.5; }
.staff-photo-slot img{ width:100%; height:100%; object-fit:cover; }
.staff-role{ font-family:var(--mono); font-size:.66rem; text-transform:uppercase; letter-spacing:.04em; color:var(--river-teal); margin:0 0 4px; line-height:1.4; }
.staff-name{ font-family:var(--display); font-size:.95rem; color:var(--forest-deep); margin:0; }

/* ============================================================
   MINIMALIST ZONE — flattened, quieter presentation applied to
   every section except the homepage (About through Contact).
   Strips heavy shadows, gradients, and decorative badges in
   favor of whitespace, thin hairlines, and typography-led
   hierarchy. Structure/interactivity untouched.
   ============================================================ */
.minimalist-zone .thread-divider{ display:none; }

.minimalist-zone .page-hero{ padding: 130px 0 70px; }
.minimalist-zone .page-hero::before{ display:none; }
.minimalist-zone .page-hero-video-wrap::before,
.minimalist-zone .page-hero-video-wrap::after{ opacity:.4; }

.minimalist-zone .media-organic{
  border-radius: 12px !important;
  box-shadow: none !important;
}
.minimalist-zone .halftone-wrap,
.minimalist-zone .emblem-frame img{ box-shadow:none; }

.minimalist-zone .program-card,
.minimalist-zone .board-card,
.minimalist-zone .staff-card,
.minimalist-zone .testimonial-card,
.minimalist-zone .news-card,
.minimalist-zone .channel-card,
.minimalist-zone .product-card,
.minimalist-zone .fb-card,
.minimalist-zone .vm-panel,
.minimalist-zone .value-badge,
.minimalist-zone .subcomponent-item,
.minimalist-zone .scholarship-card,
.minimalist-zone .fb-feature,
.minimalist-zone .pp-box,
.minimalist-zone .province-card,
.minimalist-zone .donate-panel{
  box-shadow: none !important;
  border: 1px solid rgba(31,41,35,.12) !important;
}
.minimalist-zone .program-card::before{ display:none; }
.minimalist-zone .program-card:hover,
.minimalist-zone .board-card:hover,
.minimalist-zone .news-card:hover,
.minimalist-zone .channel-card:hover,
.minimalist-zone .product-card:hover,
.minimalist-zone .fb-card:hover{
  transform: none;
  box-shadow: none !important;
  border-color: rgba(31,41,35,.28) !important;
}

.minimalist-zone .board-avatar,
.minimalist-zone .pillar-badge,
.minimalist-zone .channel-badge,
.minimalist-zone .staff-photo.placeholder{
  background: var(--forest-deep) !important;
}
.minimalist-zone .card-video,
.minimalist-zone .news-card .thumb,
.minimalist-zone .product-thumb{
  filter: saturate(.85);
}

.minimalist-zone .btn{ box-shadow:none !important; border-radius: 8px; }
.minimalist-zone .btn-gold:hover,
.minimalist-zone .btn-teal:hover{ transform:none; box-shadow:none !important; }
.minimalist-zone .geo-pin::after{ display:none; }
.minimalist-zone .give-toggle.active,
.minimalist-zone .amt.active{ box-shadow:none; }

.minimalist-zone .stats-band{ background: var(--charcoal); }
.minimalist-zone .allocation-bar{ border-radius:4px; }

.minimalist-zone .section-head h2,
.minimalist-zone .pillar-intro{ letter-spacing:-.01em; }

/* ============ IMPACT NEWS TICKER (vertical, looping) ============ */
.impact-ticker-box{
  background: var(--white); border-radius:28px; overflow:hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.28); color:var(--charcoal);
}
.impact-ticker-header{ padding:28px 28px 16px; border-bottom:1px solid rgba(31,41,35,.08); text-align:center; }
.impact-ticker-header h3{
  display:inline-block; font-size:2.3rem; line-height:1.15; color:#fff;
  background: var(--forest-deep); padding:10px 26px; border-radius:14px;
}
.impact-ticker-viewport{
  height:360px; overflow:hidden; position:relative; padding:6px 28px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent);
}
.impact-ticker-track{
  display:flex; flex-direction:column; animation: tickerVertical 32s linear infinite;
}
.impact-ticker-track:hover{ animation-play-state: paused; }
.impact-ticker-item{ display:flex; gap:14px; align-items:center; padding:16px 0; border-bottom:1px dashed rgba(31,61,43,.14); text-decoration:none; color:inherit; transition: background .25s var(--ease); }
.impact-ticker-item:hover{ background: rgba(31,110,100,.06); }
.impact-ticker-thumb{ flex-shrink:0; width:64px; height:64px; border-radius:12px; overflow:hidden; background:var(--forest-deep); }
.impact-ticker-thumb video{ width:100%; height:100%; object-fit:cover; display:block; }
.impact-ticker-text{ min-width:0; }
.impact-ticker-item .it-tag{
  font-family:var(--mono); font-size:.62rem; letter-spacing:.06em; text-transform:uppercase;
  color:var(--river-teal); display:block; margin-bottom:4px;
}
.impact-ticker-item h4{ font-family:var(--display); font-size:.95rem; color:var(--forest-deep); margin:0 0 4px; line-height:1.3; }
.impact-ticker-item p{ font-size:.8rem; color:#6b6b62; margin:0; line-height:1.45; }
@keyframes tickerVertical{ from{ transform:translateY(0); } to{ transform:translateY(-50%); } }

/* ============ PARTNER'S PRODUCT HUB (full storefront module) ============ */
.ph-hero{
  position:relative; overflow:hidden; border-radius:28px;
  background: linear-gradient(135deg, var(--forest-deep) 0%, #1F6E64 60%, #142A1D 100%);
  padding: 70px 50px; color:#fff;
}
.ph-hero::before{
  content:''; position:absolute; inset:0;
  background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1.2px);
  background-size: 22px 22px; opacity:.5; pointer-events:none;
}
.ph-hero-inner{ position:relative; max-width:640px; }
.ph-hero .eyebrow{ color:var(--gold-light); }
.ph-hero .eyebrow::before{ background:var(--gold-light); }
.ph-hero h2{ color:#fff; margin:16px 0 14px; font-size:clamp(1.9rem,4vw,2.8rem); }
.ph-hero p{ color:rgba(255,255,255,.82); margin-bottom:26px; }
.ph-hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; }

.ph-features{ background: var(--forest-deep); border-radius:20px; padding:34px 40px; margin-top:-30px; position:relative; z-index:2; }
.ph-features-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:26px; }
.ph-feature{ display:flex; gap:14px; align-items:flex-start; }
.ph-feature-icon{
  flex-shrink:0; width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center;
}
.ph-feature-icon svg{ width:18px; height:18px; stroke:var(--gold-light); fill:none; stroke-width:1.8; }
.ph-feature b{ display:block; color:#fff; font-size:.92rem; margin-bottom:3px; }
.ph-feature span{ color:rgba(255,255,255,.65); font-size:.8rem; line-height:1.4; }

.ph-category-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); gap:18px; }
.ph-category-tile{
  position:relative; aspect-ratio:1/1; border-radius:18px; overflow:hidden;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px;
  color:#fff; text-align:center; padding:14px;
}
.ph-category-tile svg{ width:32px; height:32px; }
.ph-category-tile b{ font-family:var(--display); font-size:.92rem; }
.ph-category-tile span{ font-family:var(--mono); font-size:.68rem; color:rgba(255,255,255,.75); text-transform:uppercase; letter-spacing:.04em; }

.ph-steps{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:24px; }
.ph-step{ background:var(--white); border:1px solid rgba(31,41,35,.1); border-radius:20px; padding:30px 26px; position:relative; }
.ph-step-num{ position:absolute; top:16px; right:20px; font-family:var(--display); font-size:2.2rem; font-weight:700; color:rgba(31,110,100,.15); }
.ph-step-icon{ width:42px; height:42px; border-radius:50%; background:var(--paper-warm); display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.ph-step-icon svg{ width:20px; height:20px; stroke:var(--forest-deep); fill:none; stroke-width:1.7; }
.ph-step h4{ font-family:var(--display); font-size:1.08rem; color:var(--forest-deep); margin-bottom:8px; }
.ph-step p{ font-size:.88rem; }

.ph-farmer-banner{
  position:relative; overflow:hidden; border-radius:28px; background:var(--forest-deep);
  padding: 56px 48px; color:#fff;
}
.ph-farmer-banner::after{
  content:''; position:absolute; right:-60px; top:-60px; width:280px; height:280px; border-radius:50%;
  background: radial-gradient(circle, rgba(217,164,65,.18), transparent 70%);
}
.ph-farmer-banner-inner{ position:relative; max-width:560px; }
.ph-farmer-banner h2{ color:#fff; margin:14px 0; }
.ph-farmer-banner p{ color:rgba(255,255,255,.78); margin-bottom:22px; }

.ph-testimonial-note{ text-align:center; font-size:.78rem; color:#8a8a80; margin-top:18px; }

/* ============ PRODUCT GALLERY (categorized, Order Now section) ============ */
.gallery-category{ margin-top:48px; }
.gallery-category-title{
  display:flex; align-items:center; gap:14px; margin-bottom:20px;
  font-family:var(--display); font-size:1.2rem; color:var(--forest-deep);
}
.gallery-category-title .gc-count{
  font-family:var(--mono); font-size:.68rem; letter-spacing:.05em; text-transform:uppercase;
  color:var(--river-teal); background:var(--paper-warm); padding:4px 12px; border-radius:20px;
}
.product-gallery-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(160px,1fr)); gap:16px; }
.gallery-item{
  border-radius:14px; overflow:hidden; background:var(--white); border:1px solid rgba(31,41,35,.08);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.gallery-item:hover{ transform:translateY(-4px); box-shadow:0 12px 26px rgba(31,61,43,.12); }
.gallery-item img{ width:100%; aspect-ratio:3/2; object-fit:cover; display:block; }
.gallery-item p{ font-size:.76rem; text-align:center; padding:8px 6px; margin:0; color:var(--forest-deep); font-weight:500; }

.app-window{
  width:100%; border-radius:16px; overflow:hidden;
  border:1px solid rgba(31,41,35,.14);
  background:var(--white);
}
.app-window-bar{
  display:flex; align-items:center; gap:8px; padding:12px 18px;
  background: var(--forest-deep); border-bottom:1px solid rgba(255,255,255,.08);
}
.app-dot{ width:10px; height:10px; border-radius:50%; display:inline-block; }
.app-window-title{
  margin-left:10px; font-family:var(--mono); font-size:.72rem; letter-spacing:.06em;
  text-transform:uppercase; color:rgba(255,255,255,.65);
}
.app-window iframe{ width:100%; height:800px; border:none; display:block; }

.product-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:26px; }
.product-card{
  background: var(--white); border-radius:24px; overflow:hidden; text-align:center;
  box-shadow: 0 8px 26px rgba(31,61,43,.07); border:1px solid rgba(31,61,43,.06);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.product-card:hover{ transform: translateY(-6px); box-shadow: 0 18px 36px rgba(31,61,43,.13); }
.product-thumb{
  height:130px; display:flex; align-items:center; justify-content:center;
}
.product-thumb svg{ width:44px; height:44px; }
.product-body{ padding:22px; }
.product-body h4{ font-family:var(--display); font-size:1.05rem; color:var(--forest-deep); margin-bottom:6px; }
.product-body p{ font-size:.85rem; color:#6b6b62; margin-bottom:14px; min-height:40px; }
.product-price{ font-family:var(--mono); font-size:1.1rem; color:var(--river-teal); font-weight:600; margin-bottom:14px; display:block; }

/* ============ LEADERSHIP ============ */
.board-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:24px; margin-top:36px; }
.board-card{
  background: var(--white); border-radius:22px; padding:26px 22px; text-align:center;
  box-shadow: 0 8px 26px rgba(31,61,43,.07); border:1px solid rgba(31,61,43,.06);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.board-card:hover{ transform: translateY(-6px); box-shadow: 0 18px 36px rgba(31,61,43,.13); }
.board-avatar{
  width:68px; height:68px; border-radius:50%; margin:0 auto 14px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--forest-deep), var(--river-teal));
  color: var(--gold-light); font-family:var(--display); font-weight:700; font-size:1.15rem;
}
.board-role{ font-family:var(--mono); font-size:.7rem; letter-spacing:.06em; text-transform:uppercase; color:var(--river-teal); margin-bottom:6px; }
.board-name{ font-family:var(--display); font-size:1rem; color:var(--forest-deep); line-height:1.3; }
.board-contact{ display:flex; gap:26px; justify-content:center; flex-wrap:wrap; margin-top:36px; }
.board-contact a{ display:inline-flex; align-items:center; gap:8px; font-weight:600; color:var(--forest-deep); font-size:.92rem; }
.board-contact svg{ width:18px; height:18px; stroke:var(--river-teal); fill:none; stroke-width:1.8; }

.staff-group-title{
  font-family:var(--mono); font-size:.75rem; letter-spacing:.1em; text-transform:uppercase;
  color: var(--gold-light); margin: 46px 0 20px; padding-bottom:10px; border-bottom:1px solid rgba(255,255,255,.15);
}
.staff-group-title:first-of-type{ margin-top:10px; }
.staff-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:22px; }
.staff-card{
  background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1); border-radius:20px;
  padding:24px 18px; text-align:center;
}
.staff-photo{
  width:192px; height:224px; margin:0 auto 14px;
  display:flex; align-items:center; justify-content:center;
}
.staff-photo img{ width:100%; height:100%; object-fit:contain; filter: drop-shadow(0 8px 16px rgba(0,0,0,.35)); }
.staff-photo.placeholder{
  width:72px; height:72px; border-radius:50%;
  background: rgba(255,255,255,.06); border:2px dashed rgba(255,255,255,.3);
}
.staff-photo.placeholder svg{ width:30px; height:30px; stroke:rgba(255,255,255,.55); fill:none; stroke-width:1.6; }
.staff-name{ font-family:var(--display); color:#fff; font-size:.98rem; margin-bottom:4px; }
.staff-title{ font-size:.8rem; color:rgba(255,255,255,.68); line-height:1.4; }
.staff-cluster-label{ font-family:var(--display); font-style:italic; color:var(--gold-light); font-size:1.1rem; margin:0 0 18px; }

/* ============ PROGRAM PILLARS (detailed program document layout) ============ */
.pillar-intro{ font-family:var(--display); font-style:italic; font-size:clamp(1.2rem,2.2vw,1.55rem); line-height:1.6; max-width:860px; margin:0 auto; text-align:center; color:var(--forest-deep); }
.pillar-badge{
  display:inline-flex; align-items:center; justify-content:center; width:52px; height:52px; border-radius:50%;
  background: var(--forest-deep); color:var(--gold-light); font-family:var(--display); font-weight:700; font-size:1.3rem;
  margin-bottom:18px;
}
.pillar-block .media-organic{ aspect-ratio:4/3.4; }
.pillar-full-name{ font-family:var(--mono); font-size:.72rem; letter-spacing:.06em; text-transform:uppercase; color:var(--river-teal); margin-bottom:6px; display:block; }

.subcomponent-list{ display:flex; flex-direction:column; gap:14px; margin-top:26px; }
.subcomponent-item{
  background: var(--white); border-radius:16px; padding:20px 24px;
  box-shadow: 0 6px 20px rgba(31,61,43,.06); border-left:4px solid var(--gold);
}
.subcomponent-item .sc-tag{ font-family:var(--mono); font-size:.7rem; color:var(--river-teal); text-transform:uppercase; letter-spacing:.05em; margin-bottom:4px; display:block; }
.subcomponent-item h4{ font-family:var(--display); font-size:1.05rem; color:var(--forest-deep); margin-bottom:6px; }
.subcomponent-item p{ font-size:.9rem; margin:0; }

.scholarship-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:18px; margin-top:22px; }
.scholarship-card{ background:var(--paper-warm); border-radius:16px; padding:20px 22px; }
.scholarship-card b{ display:block; font-family:var(--display); color:var(--forest-deep); margin-bottom:10px; font-size:.98rem; }
.scholarship-card ul{ margin:0; padding-left:18px; font-size:.85rem; color:#4a4a42; }
.scholarship-card ul li{ margin-bottom:5px; }

/* ============ VISION / MISSION / VALUES / OBJECTIVES ============ */
.vm-grid{ display:grid; grid-template-columns:1fr 1fr; gap:26px; margin-bottom:40px; }
@media (max-width:800px){ .vm-grid{ grid-template-columns:1fr; } }
.vm-panel{
  background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1); border-radius:26px;
  padding:34px; position:relative; overflow:hidden;
}
.vm-panel::before{
  content:''; position:absolute; top:0; left:0; right:0; height:4px;
  background: linear-gradient(90deg, var(--gold), var(--river-teal-lt));
}
.vm-icon{
  width:56px; height:56px; border-radius:16px; display:flex; align-items:center; justify-content:center;
  background: rgba(217,164,65,.14); margin-bottom:18px;
}
.vm-icon svg{ width:28px; height:28px; stroke:var(--gold-light); fill:none; stroke-width:1.6; }
.vm-panel h3{ color:#fff; margin-bottom:10px; }
.vm-panel p{ color:rgba(255,255,255,.78); }

.values-row{ display:grid; grid-template-columns:repeat(auto-fit,minmax(210px,1fr)); gap:20px; margin-bottom:40px; }
.value-badge{
  background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1); border-radius:20px;
  padding:24px 20px; text-align:center;
}
.value-badge .value-word{ font-family:var(--display); font-style:italic; font-size:1.3rem; color:var(--gold-light); margin-bottom:8px; }
.value-badge p{ color:rgba(255,255,255,.72); font-size:.88rem; margin:0; }

.objectives-list{ list-style:none; margin:0; padding:0; counter-reset: obj; display:flex; flex-direction:column; gap:16px; }
.objectives-list li{
  counter-increment: obj; display:flex; gap:16px; align-items:flex-start;
  background: rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.08); border-radius:16px; padding:18px 22px;
}
.objectives-list li::before{
  content: counter(obj);
  font-family:var(--display); font-weight:700; font-size:1.1rem; color:var(--forest-deep);
  background: var(--gold); width:32px; height:32px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
}
.objectives-list li span{ color:rgba(255,255,255,.82); font-size:.95rem; padding-top:4px; }
.vmco-subhead{ color:var(--gold-light); font-family:var(--mono); font-size:.75rem; letter-spacing:.12em; text-transform:uppercase; margin-bottom:16px; }

/* ============ NAV ============ */
.site-nav{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 500;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 18px 40px;
  background: linear-gradient(to bottom, rgba(20,16,10,.55), transparent);
  transition: background .4s var(--ease), padding .4s var(--ease), backdrop-filter .4s;
}
.site-nav.scrolled{
  background: rgba(247,242,228,.92);
  backdrop-filter: blur(10px);
  padding: 10px 40px;
  box-shadow: 0 2px 24px rgba(0,0,0,.06);
}
.nav-brand{ display:flex; align-items:center; gap:12px; }
.nav-brand img{ height:44px; width:44px; border-radius:50%; object-fit:cover; transition: height .4s var(--ease); }
.site-nav.scrolled .nav-brand img{ height:36px; width:36px; }
.nav-brand-text{ font-family: var(--display); font-size:1.05rem; font-weight:600; color: var(--white); letter-spacing:.01em; transition: color .4s; }
.site-nav.scrolled .nav-brand-text{ color: var(--forest-deep); }
.nav-brand-text span{ display:block; font-family: var(--mono); font-size:.6rem; letter-spacing:.14em; font-weight:400; opacity:.75; text-transform:uppercase; }

.nav-links{ display:flex; gap:30px; list-style:none; margin:0; padding:0; }
.nav-links a{
  font-size:.86rem; font-weight:500; color: var(--white);
  position:relative; padding-bottom:4px; transition:color .3s;
}
.site-nav.scrolled .nav-links a{ color: var(--charcoal); }
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:2px;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }
.nav-cta{
  background: var(--gold); color: var(--forest-deep) !important; padding:10px 22px;
  border-radius:30px; font-weight:600; box-shadow: 0 4px 18px rgba(217,164,65,.35);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.nav-cta:hover{ transform: translateY(-2px); box-shadow: 0 8px 24px rgba(217,164,65,.45); }
.nav-toggle{ display:none; background:none; border:none; }
.nav-toggle span{ display:block; width:26px; height:2px; background:var(--white); margin:6px 0; transition:.3s; }
.site-nav.scrolled .nav-toggle span{ background: var(--charcoal); }

@media (max-width: 900px){
  .nav-links{
    position:fixed; top:0; right:-100%; height:100vh; width:min(78vw,320px);
    background: var(--forest-deep); flex-direction:column; padding:100px 36px; gap:26px;
    transition: right .5s var(--ease); z-index:400;
  }
  .nav-links.open{ right:0; }
  .nav-links a{ color:var(--white) !important; font-size:1.1rem; }
  .nav-toggle{ display:block; z-index:600; }
}

/* ============ AUDIO TOGGLE ============ */
.audio-toggle{
  position: fixed; bottom:26px; right:26px; z-index:450;
  width:54px; height:54px; border-radius:50%;
  background: rgba(31,61,43,.85); backdrop-filter: blur(6px);
  display:flex; align-items:center; justify-content:center;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  transition: transform .3s var(--ease);
}
.audio-toggle:hover{ transform: scale(1.08); }
.audio-toggle svg{ width:22px; height:22px; fill:none; stroke:var(--gold-light); stroke-width:1.8; }
.audio-toggle .bars{ display:flex; align-items:flex-end; gap:3px; height:16px; }
.audio-toggle .bars i{ width:3px; background:var(--gold-light); border-radius:2px; animation: bar 1s ease-in-out infinite; }
.audio-toggle .bars i:nth-child(1){ height:6px; animation-delay:0s;}
.audio-toggle .bars i:nth-child(2){ height:14px; animation-delay:.2s;}
.audio-toggle .bars i:nth-child(3){ height:9px; animation-delay:.4s;}
.audio-toggle.muted .bars i{ animation-play-state: paused; height:4px; }
@keyframes bar{ 0%,100%{ transform: scaleY(.4);} 50%{ transform: scaleY(1);} }

/* ============ THE THREAD (signature motif) ============ */
.thread-divider{ position:relative; height:120px; margin-top:-1px; overflow:hidden; }
.thread-divider svg{ width:100%; height:100%; display:block; }

.thread-inline{ width:100%; height:60px; margin: 10px 0 30px; }

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding: 15px 32px; border-radius: 40px; font-weight:600; font-size:.95rem;
  border:2px solid transparent; transition: all .35s var(--ease);
}
.btn-gold{ background: var(--gold); color: var(--forest-deep); box-shadow: 0 6px 22px rgba(217,164,65,.35); }
.btn-gold:hover{ background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(217,164,65,.45); }
.btn-outline{ border-color: rgba(255,255,255,.6); color: var(--white); }
.btn-outline:hover{ background: rgba(255,255,255,.12); border-color:#fff; }
.btn-outline-dark{ border-color: var(--forest); color: var(--forest); }
.btn-outline-dark:hover{ background: var(--forest); color:var(--white); }
.btn-teal{ background: var(--river-teal); color:var(--white); }
.btn-teal:hover{ background: var(--river-teal-lt); transform: translateY(-3px); }

/* ============ HERO ============ */
.hero{
  position:relative; height:100vh; min-height:640px;
  display:flex; align-items:flex-start; overflow:hidden;
  background: var(--forest-deep);
}
.hero-video-wrap{ position:absolute; inset:0; }
.hero-video-wrap video{
  width:100%; height:100%; object-fit:cover;
  filter: grayscale(.25) contrast(1.12) brightness(1.02) saturate(1.05);
  opacity:.85;
}
.hero-video-wrap::before{
  content:''; position:absolute; inset:0; z-index:1; pointer-events:none;
  background-image: radial-gradient(circle, var(--charcoal) 1px, transparent 1.15px);
  background-size: 6px 6px;
  mix-blend-mode: hard-light;
  opacity:.22;
}
.hero-video-wrap::after{
  content:''; position:absolute; inset:0; z-index:1; pointer-events:none;
  background: linear-gradient(135deg, rgba(217,164,65,.16), rgba(31,110,100,.18));
  mix-blend-mode: color;
}
.hero-scrim{
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(217,164,65,.18), transparent 55%),
    linear-gradient(180deg, rgba(20,16,10,.55) 0%, rgba(20,16,10,.35) 45%, rgba(20,16,10,.88) 100%);
}
.hero-particles{ position:absolute; inset:0; pointer-events:none; }
.hero-particles span{
  position:absolute; bottom:-10px; width:6px; height:6px; border-radius:50%;
  background: var(--gold-light); opacity:.55; animation: floatUp linear infinite;
}
@keyframes floatUp{
  0%{ transform: translateY(0) translateX(0); opacity:0; }
  10%{ opacity:.6; }
  90%{ opacity:.4; }
  100%{ transform: translateY(-110vh) translateX(30px); opacity:0; }
}
.hero-content{ position:relative; z-index:2; color:var(--white); max-width:840px; padding-top:120px; text-align:left; }
.hero-content .eyebrow{ color: var(--gold-light); }
.hero-content .eyebrow::before{ background: var(--gold-light); }
.hero-content h1{
  color:var(--white); margin: 18px 0 6px;
  text-shadow: 0 4px 40px rgba(0,0,0,.35);
}
.hero-content h1 em{ font-style:italic; color: var(--gold-light); font-weight:400; }
.hero-sub{
  font-family: var(--display); font-style:italic; font-weight:400;
  font-size: clamp(1.15rem, 2vw, 1.5rem); color: var(--sky-pale); margin: 8px 0 22px;
}
.hero-statement{ max-width:600px; color: rgba(255,255,255,.88); font-size:1.05rem; margin-bottom:36px; }
.hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; }
.scroll-cue{
  position:absolute; bottom:calc(20vh + 24px); left:50%; transform:translateX(-50%);
  z-index:2; color:rgba(255,255,255,.7); font-family:var(--mono); font-size:.7rem;
  letter-spacing:.15em; text-transform:uppercase; display:flex; flex-direction:column; align-items:center; gap:8px;
}
.scroll-cue .line{ width:1px; height:34px; background: rgba(255,255,255,.5); position:relative; overflow:hidden; }
.scroll-cue .line::after{ content:''; position:absolute; top:-100%; left:0; width:100%; height:100%; background:var(--gold-light); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine{ 0%{top:-100%;} 60%{top:100%;} 100%{top:100%;} }

/* ============ HERO NEWS TICKER (edge-to-edge, bottom of hero) ============ */
.hero-news-ticker{
  position:absolute; bottom:0; left:0; right:0; z-index:4;
  min-height:20vh; background: transparent;
  display:flex; flex-direction:column; overflow:hidden;
}
.hero-ticker-label{
  display:flex; align-items:center; justify-content:flex-start; gap:10px; padding:16px 28px 0; text-align:left;
  font-family:var(--mono); font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; color:var(--gold-light);
}
.hero-ticker-label svg{ width:14px; height:14px; stroke:var(--gold-light); fill:none; stroke-width:2; }
.hero-ticker-viewport{ flex:1; overflow:hidden; position:relative; display:flex; align-items:center; }
.hero-ticker-track{ display:flex; align-items:center; gap:0; animation: heroTickerScroll 38s linear infinite; }
.hero-ticker-track:hover{ animation-play-state: paused; }
.hero-ticker-item{
  display:flex; align-items:center; gap:14px; padding:12px 26px;
  border-right:1px solid rgba(255,255,255,.12); text-decoration:none; white-space:nowrap;
  flex-shrink:0;
}
.hero-ticker-thumb{
  width:52px; height:52px; border-radius:10px; flex-shrink:0; background-size:cover; background-position:center;
  display:flex; align-items:center; justify-content:center; color:#fff; font-family:var(--mono); font-size:.6rem;
}
.hero-ticker-item .htt-cat{
  display:block; font-family:var(--mono); font-size:.6rem; letter-spacing:.06em; text-transform:uppercase;
  color:var(--gold-light); margin-bottom:2px;
}
.hero-ticker-item h5{ font-family:var(--display); font-size:.92rem; color:#fff; margin:0; white-space:normal; max-width:320px; line-height:1.25; }
@keyframes heroTickerScroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
@media (max-width:760px){
  .hero-content{ padding-top:100px; }
  .hero-ticker-item h5{ max-width:220px; }
}

/* ============ SECTIONS ============ */
section{ position:relative; }
.section{ padding: 120px 0; }
.section-tight{ padding: 80px 0; }
.bg-paper{ background: var(--paper); }
.bg-warm{ background: var(--paper-warm); }
.bg-forest{ background: var(--forest-deep); color: var(--white); }
.bg-forest p{ color: rgba(255,255,255,.78); }
.bg-forest .eyebrow{ color: var(--gold-light); }
.bg-forest .eyebrow::before{ background: var(--gold-light); }
.bg-forest h2{ color:var(--white); }

.section-head{ max-width: 720px; margin-bottom: 56px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ margin-top:14px; }

/* Reveal on scroll */
.reveal{ opacity:0; transform: translateY(36px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
.reveal-stagger > *{ transition-delay: calc(var(--i,0) * 90ms); }

/* ============ STORY / SPLIT SECTIONS ============ */
.split{ display:grid; grid-template-columns: 1.05fr .95fr; gap:70px; align-items:center; }
.split.reverse{ direction: rtl; } .split.reverse > *{ direction: ltr; }
@media (max-width: 900px){ .split{ grid-template-columns:1fr; gap:40px; } .split.reverse{direction:ltr;} }

.media-organic{
  position:relative; border-radius: var(--radius-organic);
  overflow:hidden; aspect-ratio: 4/4.6; box-shadow: 0 30px 60px rgba(31,61,43,.18);
}
.media-organic img{ width:100%; height:100%; object-fit:cover; }
.media-badge{
  position:absolute; bottom:-22px; left:-22px; background:var(--white);
  border-radius:50%; width:120px; height:120px; display:flex; flex-direction:column;
  align-items:center; justify-content:center; box-shadow:0 16px 30px rgba(0,0,0,.15);
  text-align:center; border: 3px solid var(--paper);
}
.media-badge b{ font-family:var(--display); font-size:1.6rem; color:var(--forest); }
.media-badge span{ font-family:var(--mono); font-size:.6rem; letter-spacing:.06em; color:var(--river-teal); text-transform:uppercase; }

/* ============ PROGRAM CARDS ============ */
.grid-programs{ display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:28px; }
.program-card{
  background: var(--white); border-radius: 26px; padding: 34px 30px;
  box-shadow: 0 8px 30px rgba(31,61,43,.07); border: 1px solid rgba(31,61,43,.06);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position:relative; overflow:hidden;
}
.program-card::before{
  content:''; position:absolute; top:0; left:0; right:0; height:5px;
  background: linear-gradient(90deg, var(--ribbon-pink), var(--gold), var(--river-teal));
  transform: scaleX(0); transform-origin:left; transition: transform .5s var(--ease);
}
.program-card:hover{ transform: translateY(-8px); box-shadow: 0 20px 46px rgba(31,61,43,.14); }
.program-card:hover::before{ transform: scaleX(1); }
.program-icon{
  width:174px; height:174px; display:flex; align-items:center; justify-content:center;
  margin:0 auto 20px; overflow:visible;
}
.program-icon img{ width:100%; height:100%; object-fit:contain; }
.program-icon svg{ width:84px; height:84px; stroke: var(--forest); fill:none; stroke-width:1.6; }
.program-card h3{ margin-bottom:10px; }
.program-card p{ font-size:.95rem; margin-bottom:16px; }
.program-metric{ font-family:var(--mono); font-size:.78rem; color:var(--river-teal); letter-spacing:.03em; margin-bottom:16px; display:block; }
.program-link{ font-size:.85rem; font-weight:600; color:var(--forest); display:inline-flex; align-items:center; gap:6px; }
.program-link svg{ width:14px; height:14px; transition: transform .3s; }
.program-card:hover .program-link svg{ transform: translateX(4px); }

/* ============ IMPACT STATS ============ */
.stats-band{ background: var(--forest-deep); color:var(--white); padding: 90px 0; position:relative; overflow:hidden; }
.stats-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:40px; text-align:center; }
.stat-num{ font-family:var(--display); font-size: clamp(2.2rem,4vw,3.4rem); color:var(--gold-light); font-weight:600; }
.stat-label{ font-family:var(--mono); font-size:.72rem; letter-spacing:.08em; text-transform:uppercase; color: rgba(255,255,255,.7); margin-top:8px; }

/* ============ TESTIMONIALS ============ */
.testimonial-card{
  background: var(--white); border-radius:28px; padding:40px; position:relative;
  box-shadow: 0 10px 34px rgba(31,61,43,.08);
}
.testimonial-card p.quote{ font-family:var(--display); font-style:italic; font-size:1.25rem; color:var(--forest-deep); line-height:1.5; }
.testimonial-person{ display:flex; align-items:center; gap:14px; margin-top:24px; }
.testimonial-person img{ width:54px; height:54px; border-radius:50%; object-fit:cover; }
.testimonial-person b{ display:block; font-size:.92rem; }
.testimonial-person span{ font-size:.8rem; color:var(--river-teal); }

/* ============ PARTNERS ============ */
.partners-track{ display:flex; gap:64px; align-items:center; overflow:hidden; position:relative; }
.partners-track .p-item{ font-family:var(--display); font-size:1.1rem; color:var(--charcoal); opacity:.45; filter:grayscale(1); transition:.4s; white-space:nowrap; }
.partners-track .p-item:hover{ opacity:1; filter:grayscale(0); color:var(--forest); }

/* ============ DONATE ============ */
.donate-panel{
  background: var(--forest-deep); color:var(--white); border-radius:32px; padding:56px;
  display:grid; grid-template-columns: 1fr 1fr; gap:50px;
}
@media (max-width:800px){ .donate-panel{ grid-template-columns:1fr; padding:36px 26px;} }
.give-options{ display:flex; gap:12px; margin: 22px 0; flex-wrap:wrap; }
.give-toggle{ padding:10px 20px; border-radius:30px; border:1px solid rgba(255,255,255,.3); background:transparent; color:var(--white); font-weight:600; font-size:.85rem; }
.give-toggle.active{ background: var(--gold); color:var(--forest-deep); border-color:var(--gold); }
.give-amounts{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:22px; }
.amt{ padding:12px 18px; border-radius:12px; border:1px solid rgba(255,255,255,.25); background:rgba(255,255,255,.05); color:var(--white); font-weight:600; }
.amt.active{ background: var(--gold-light); color:var(--forest-deep); border-color:var(--gold-light); }
.allocation-bar{ height:14px; border-radius:8px; overflow:hidden; display:flex; margin:10px 0 6px; }
.allocation-bar span{ height:100%; }
.alloc-legend{ display:flex; flex-wrap:wrap; gap:14px; font-size:.78rem; color:rgba(255,255,255,.75); }
.alloc-legend i{ width:10px; height:10px; border-radius:2px; display:inline-block; margin-right:6px; }

/* ============ FOOTER PARTNER TICKER ============ */
.footer-ticker{
  overflow:hidden; white-space:nowrap;
  border-top:1px solid rgba(255,255,255,.12); border-bottom:1px solid rgba(255,255,255,.12);
  padding:14px 0; margin-bottom:26px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.footer-ticker-track{ display:inline-flex; width:max-content; animation: tickerScroll 45s linear infinite; }
.footer-ticker-track:hover{ animation-play-state: paused; }
.footer-ticker-set{ display:inline-flex; align-items:center; }
.footer-ticker-set span{
  font-family:var(--mono); font-size:.72rem; letter-spacing:.05em; text-transform:uppercase;
  color:rgba(255,255,255,.55); padding:0 26px; position:relative;
}
.footer-ticker-set span::after{
  content:'\2022'; position:absolute; right:0; color: var(--gold-light); opacity:.6;
}
@keyframes tickerScroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ============ FOOTER ============ */
footer{ background: var(--charcoal); color: rgba(255,255,255,.75); padding: 90px 0 30px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap:50px; margin-bottom:60px; }
@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.footer-brand img{ width:44px; height:44px; border-radius:50%; object-fit:cover; }
.footer-brand b{ font-family:var(--display); color:var(--white); font-size:1.1rem; }
.footer h4{ color:var(--white); font-family:var(--body); font-size:.78rem; letter-spacing:.1em; text-transform:uppercase; margin-bottom:18px; }
.footer ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:12px; }
.footer ul a:hover{ color: var(--gold-light); }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.12); padding-top:26px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:.8rem; }
.newsletter-form{ display:flex; margin-top:14px; border-radius:30px; overflow:hidden; border:1px solid rgba(255,255,255,.25); }
.newsletter-form input{ flex:1; background:transparent; border:none; padding:12px 16px; color:var(--white); font-family:var(--body); }
.newsletter-form input::placeholder{ color:rgba(255,255,255,.4); }
.newsletter-form button{ background:var(--gold); color:var(--forest-deep); border:none; padding:0 20px; font-weight:700; }

.page-hero-video{ overflow:hidden; }
.page-hero-video-wrap{ position:absolute; inset:0; z-index:0; }
.page-hero-video-wrap video{
  width:100%; height:100%; object-fit:cover;
  filter: grayscale(1) contrast(1.9) brightness(1.05);
  mix-blend-mode: luminosity;
  opacity:.9;
}
.page-hero-video-wrap::before{
  content:''; position:absolute; inset:0; z-index:1; pointer-events:none;
  background-image: radial-gradient(circle, var(--charcoal) 1px, transparent 1.15px);
  background-size: 5px 5px;
  mix-blend-mode: hard-light;
  opacity:.8;
}
.page-hero-video-wrap::after{
  content:''; position:absolute; inset:0; z-index:1; pointer-events:none;
  background: linear-gradient(135deg, rgba(217,164,65,.45), rgba(31,110,100,.55));
  mix-blend-mode: color;
}
.page-hero-scrim{
  position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg, rgba(20,16,10,.75) 0%, rgba(20,16,10,.55) 45%, rgba(20,16,10,.9) 100%);
}

/* ============ PARTNER PRODUCTS BOX (interactive) ============ */
.pp-box{
  background: var(--white); border-radius:28px; padding:34px;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  color: var(--charcoal);
}
.pp-box h3{ font-size:1.3rem; color:var(--forest-deep); }
.pp-sub{ font-size:.85rem; color:#6b6b62; margin:8px 0 20px; }
.pp-tabs{ display:flex; gap:8px; margin-bottom:20px; border-bottom:1px solid rgba(31,61,43,.12); padding-bottom:14px; }
.pp-tab{
  flex:1; background:var(--paper-warm); border:none; padding:9px 8px; border-radius:20px;
  font-size:.76rem; font-weight:700; color:var(--forest); letter-spacing:.01em; transition:.3s;
}
.pp-tab.active{ background:var(--forest-deep); color:var(--white); }
.pp-panel{ display:none; }
.pp-panel.active{ display:block; animation: ppFade .4s var(--ease); }
@keyframes ppFade{ from{ opacity:0; transform:translateY(6px);} to{ opacity:1; transform:none;} }
.pp-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:14px; }
.pp-list li{ display:flex; flex-direction:column; padding-bottom:12px; border-bottom:1px dashed rgba(31,61,43,.12); }
.pp-list li:last-child{ border-bottom:none; padding-bottom:0; }
.pp-list b{ font-family:var(--display); font-size:.98rem; color:var(--forest-deep); }
.pp-list span{ font-size:.8rem; color:#7a7a70; margin-top:2px; }
.pp-cat-row{ display:flex; justify-content:space-between; align-items:center; padding:10px 0; border-bottom:1px dashed rgba(31,61,43,.12); font-size:.9rem; }
.pp-cat-row b{ color:var(--river-teal); font-family:var(--mono); }
.pp-contact-row{ display:flex; align-items:center; gap:12px; padding:10px 0; font-size:.9rem; }
.pp-contact-row svg{ width:20px; height:20px; color:var(--river-teal); flex-shrink:0; }
.pp-contact-row a{ color:var(--forest-deep); font-weight:600; }

/* ============ EMBLEM FRAME (clean, no organic shape) ============ */
.emblem-frame{
  display:flex; align-items:center; justify-content:flex-end;
  padding: 20px;
  aspect-ratio: 4/4.2;
}
.emblem-frame img{ max-height:100%; filter: drop-shadow(0 20px 40px rgba(31,61,43,.18)); }

.card-video{
  width: calc(100% + 60px); margin: -34px -30px 20px; border-radius: 26px 26px 0 0;
  overflow:hidden; aspect-ratio: 16/10; background: var(--forest-deep);
}
.card-video video{ width:100%; height:100%; object-fit:cover; display:block; }

/* ============ HALFTONE VIDEO ============ */
.halftone-wrap{
  position:relative; border-radius: 50%; overflow:hidden;
  aspect-ratio: 1/1; box-shadow: 0 30px 60px rgba(31,61,43,.25);
  background: var(--forest-deep);
  width: min(560px, 100%);
  margin-left: auto;
}
.halftone-wrap video{
  width:100%; height:100%; object-fit:cover; display:block;
  filter: grayscale(1) contrast(1.85) brightness(1.08);
  mix-blend-mode: luminosity;
}
.halftone-wrap::before{
  content:''; position:absolute; inset:0; z-index:2; pointer-events:none;
  background-image: radial-gradient(circle, var(--charcoal) 1px, transparent 1.15px);
  background-size: 5px 5px;
  mix-blend-mode: hard-light;
  opacity:.85;
}
.halftone-wrap::after{
  content:''; position:absolute; inset:0; z-index:1; pointer-events:none;
  background: linear-gradient(135deg, rgba(217,164,65,.55), rgba(31,110,100,.6));
  mix-blend-mode: color;
}
.halftone-badge{
  position:absolute; z-index:3; bottom:-20px; right:-16px; background:var(--gold);
  color:var(--forest-deep); border-radius:50%; width:104px; height:104px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; box-shadow:0 14px 28px rgba(0,0,0,.25); border:3px solid var(--paper);
}
.halftone-badge b{ font-family:var(--display); font-size:.95rem; line-height:1.2; }
.halftone-badge span{ font-family:var(--mono); font-size:.55rem; text-transform:uppercase; letter-spacing:.06em; }

.hero-with-media{ display:grid; grid-template-columns: 1fr 1fr; gap:50px; align-items:center; }
@media (max-width: 900px){ .hero-with-media{ grid-template-columns:1fr; gap:36px; } .hero-with-media .halftone-wrap{ width:min(340px,100%); margin:0 auto; } }

/* ============ PAGE HERO (interior pages) ============ */
.page-hero{
  padding: 170px 0 90px; background: var(--forest-deep); color:var(--white); position:relative; overflow:hidden;
}
.page-hero::before{
  content:''; position:absolute; inset:0; opacity:.12; background-size:cover; background-position:center;
}
.page-hero .eyebrow{ color:var(--gold-light); } .page-hero .eyebrow::before{ background:var(--gold-light); }
.page-hero h1{ color:var(--white); margin-top:14px; }

/* ============ MAP ============ */
.map-wrap{ display:grid; grid-template-columns: 1.2fr .8fr; gap:40px; align-items:start; }
@media (max-width:860px){ .map-wrap{ grid-template-columns:1fr; } }
.map-svg-holder{ background:var(--white); border-radius:28px; padding:20px; box-shadow:0 10px 30px rgba(31,61,43,.08); }
.map-pin{ cursor:pointer; transition:.3s; }
.map-pin circle{ transition:.3s; }
.map-pin:hover circle, .map-pin.active circle{ r:11; }
.map-pin.active circle{ fill:var(--terracotta); }
.province-card{ background:var(--white); border-radius:22px; padding:28px; box-shadow:0 10px 30px rgba(31,61,43,.08); display:none; }
.province-card.show{ display:block; }
.province-card h3{ margin-bottom:6px; }
.province-tag{ font-family:var(--mono); font-size:.7rem; color:var(--river-teal); text-transform:uppercase; letter-spacing:.06em; }
.province-stats{ display:flex; gap:22px; margin:18px 0; }
.province-stats div b{ display:block; font-family:var(--display); font-size:1.5rem; color:var(--forest); }
.province-stats div span{ font-size:.72rem; color:#777; text-transform:uppercase; letter-spacing:.04em; }

/* ============ GIVING CHANNELS (bank / e-wallets) ============ */
.channel-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:26px; }
.channel-card{
  background: var(--white); border-radius:24px; padding:30px 26px; text-align:center;
  box-shadow: 0 8px 26px rgba(31,61,43,.08); border:1px solid rgba(31,61,43,.06);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.channel-card:hover{ transform: translateY(-6px); box-shadow: 0 18px 36px rgba(31,61,43,.13); }
.channel-badge{
  width:64px; height:64px; border-radius:18px; display:flex; align-items:center; justify-content:center;
  margin:0 auto 16px; font-family:var(--display); font-weight:700; font-size:1.05rem; color:#fff; letter-spacing:.02em;
}
.channel-card h4{ font-family:var(--display); font-size:1.08rem; color:var(--forest-deep); margin-bottom:4px; }
.channel-card .channel-sub{ font-size:.78rem; color:#8a8a80; text-transform:uppercase; letter-spacing:.05em; font-family:var(--mono); margin-bottom:14px; }
.channel-detail{
  font-family:var(--mono); font-size:.82rem; background:var(--paper-warm); border-radius:10px;
  padding:9px 12px; margin:6px 0; color:var(--charcoal); word-break:break-word;
}
.channel-detail b{ color:var(--river-teal); }
.channel-note{ font-size:.78rem; color:#8a8a80; margin-top:10px; }

/* ============ DONOR PRIVACY / INFO ============ */
.privacy-box{ background: var(--paper-warm); border-radius:28px; padding:44px; }
.privacy-box h3{ color:var(--forest-deep); margin-bottom:14px; }
.privacy-list{ list-style:none; margin:20px 0; padding:0; display:flex; flex-direction:column; gap:14px; }
.privacy-list li{ display:flex; gap:12px; align-items:flex-start; font-size:.92rem; color:#3c3830; }
.privacy-list svg{ width:20px; height:20px; flex-shrink:0; margin-top:2px; stroke:var(--river-teal); fill:none; stroke-width:2; }
.ms-form-cta{
  display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
  background: var(--white); border-radius:20px; padding:26px 30px; margin-top:26px;
  border: 1px dashed rgba(31,61,43,.25);
}
.ms-form-cta div h4{ font-family:var(--display); color:var(--forest-deep); margin-bottom:4px; }
.ms-form-cta div p{ font-size:.86rem; margin:0; }

/* ============ FACEBOOK GRID (compact, News page) ============ */
.fb-grid{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:28px;
}
.fb-card{
  background: var(--white); border-radius:24px; padding:20px;
  box-shadow: 0 8px 26px rgba(31,61,43,.08); border:1px solid rgba(31,61,43,.06);
  display:flex; flex-direction:column; align-items:center; text-align:center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.fb-card:hover{ transform: translateY(-6px); box-shadow: 0 18px 36px rgba(31,61,43,.13); }
.fb-card .fb-embed-wrap{ max-width:100%; border-radius:14px; overflow:hidden; margin-bottom:14px; }
.fb-card .fb-embed-wrap iframe{ box-shadow:none; border-radius:14px; }
.fb-card h4{ font-family:var(--display); font-size:1.02rem; color:var(--forest-deep); margin-bottom:6px; }
.fb-card p{ font-size:.86rem; margin-bottom:10px; }

/* ============ FACEBOOK EMBED ============ */
.fb-feature{
  background: var(--white); border-radius:28px; padding:40px;
  box-shadow: 0 10px 34px rgba(31,61,43,.08);
  display:grid; grid-template-columns: auto 1fr; gap:40px; align-items:start;
}
@media (max-width:760px){ .fb-feature{ grid-template-columns:1fr; } }
.fb-embed-wrap{ width:100%; max-width:500px; margin:0 auto; }
.fb-embed-wrap iframe{
  width:100%; border-radius:16px; display:block;
  box-shadow: 0 14px 34px rgba(31,61,43,.12);
}
.fb-feature-body h3{ margin-bottom:12px; }
.fb-feature-body .news-meta{ margin-bottom:10px; }
.fb-feature-body a.fb-link{
  display:inline-flex; align-items:center; gap:8px; margin-top:16px;
  color:#1877F2; font-weight:700; font-size:.92rem;
}
.fb-feature-body a.fb-link svg{ width:18px; height:18px; fill:#1877F2; }

/* ============ NEWS / STORIES ============ */
.news-grid{ display:grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap:30px; }
.news-card{ background:var(--white); border-radius:22px; overflow:hidden; box-shadow:0 8px 26px rgba(31,61,43,.07); transition:.4s var(--ease); }
.news-card:hover{ transform:translateY(-6px); box-shadow:0 18px 36px rgba(31,61,43,.13); }
.news-card .thumb{ height:200px; background-size:cover; background-position:center; position:relative; }
.news-cat{ position:absolute; top:14px; left:14px; background:rgba(20,16,10,.7); color:var(--gold-light); font-family:var(--mono); font-size:.65rem; letter-spacing:.08em; text-transform:uppercase; padding:6px 12px; border-radius:20px; }
.news-body{ padding:24px; }
.news-meta{ font-family:var(--mono); font-size:.7rem; color:#8a8a8a; text-transform:uppercase; letter-spacing:.05em; margin-bottom:10px; }
.news-body h3{ margin-bottom:10px; }
.filter-row{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:40px; }
.filter-pill{ padding:9px 20px; border-radius:24px; background:var(--white); border:1px solid rgba(31,61,43,.15); font-size:.82rem; font-weight:600; color:var(--forest); }
.filter-pill.active{ background:var(--forest); color:var(--white); }

.news-card.placeholder{ border:2px dashed rgba(31,61,43,.22); box-shadow:none; background:transparent; }
.news-card.placeholder .thumb{ background:var(--paper-warm) !important; display:flex; align-items:center; justify-content:center; }
.news-card.placeholder .thumb svg{ width:34px; height:34px; stroke:var(--forest-deep); fill:none; stroke-width:1.4; opacity:.5; }
.news-card.placeholder:hover{ transform:none; box-shadow:none; }
.coming-soon-tag{
  position:absolute; top:14px; left:14px; background:rgba(31,61,43,.12); color:var(--forest-deep);
  font-family:var(--mono); font-size:.65rem; letter-spacing:.08em; text-transform:uppercase; padding:6px 12px; border-radius:20px;
}

/* ============ TIMELINE ============ */
.timeline{ position:relative; padding-left:50px; }
.timeline::before{ content:''; position:absolute; left:10px; top:0; bottom:0; width:2px; background: linear-gradient(var(--gold), var(--river-teal)); }
.t-item{ position:relative; margin-bottom:50px; }
.t-item::before{ content:''; position:absolute; left:-44px; top:4px; width:14px; height:14px; border-radius:50%; background:var(--gold); border:3px solid var(--paper); box-shadow:0 0 0 2px var(--gold); }
.t-year{ font-family:var(--mono); color:var(--river-teal); font-size:.85rem; margin-bottom:6px; display:block; }

.geo-pin{
  position:absolute; transform: translate(-50%,-50%);
  width:22px; height:22px; border-radius:50%;
  background: var(--terracotta); border:3px solid var(--white);
  box-shadow: 0 0 0 4px rgba(184,92,46,.28), 0 4px 10px rgba(0,0,0,.3);
  cursor:pointer; transition: transform .25s var(--ease), background .25s;
  padding:0;
}
.geo-pin::after{
  content:''; position:absolute; inset:-8px; border-radius:50%;
  border:2px solid var(--terracotta); opacity:.5; animation: pinPulse 2.2s ease-out infinite;
}
.geo-pin:hover{ transform: translate(-50%,-50%) scale(1.15); }
.geo-pin.active{ background: var(--forest-deep); }
.geo-pin.active::after{ border-color: var(--forest-deep); }
@keyframes pinPulse{ 0%{ transform:scale(.7); opacity:.6; } 100%{ transform:scale(1.8); opacity:0; } }

/* Utility */
.text-center{ text-align:center; }
.mt-0{margin-top:0;}
.pill-quote{
  font-family:var(--display); font-style:italic; font-size:clamp(1.3rem,2.4vw,1.8rem);
  max-width:820px; margin: 0 auto; line-height:1.5;
}
