/* ============================================================
   PY Website - Page Specific Styles
   Consolidated from embedded PHP page style blocks.
   Keep reusable design-system styles in py.css.
   ============================================================ */

/* ============================================================
   Source: .\contact.php style block 1
   ============================================================ */
@media (max-width:768px){
  .contact-layout { grid-template-columns: 1fr !important; }
}

/* ============================================================
   Source: .\index.php style block 1
   ============================================================ */
/* -- Home-specific styles -- */

/* 1. HERO  -  dark charcoal, large editorial type, orange accents */
.h-hero {
  background: #1A1F2E;
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}
.h-hero::before {
  content:'';
  position:absolute;
  top:-120px; right:-120px;
  width:440px; height:440px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(0,113,188,0.18) 0%, transparent 70%);
  pointer-events:none;
}
.h-hero::after {
  content:'';
  position:absolute;
  bottom:-80px; left:20%;
  width:260px; height:260px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(245,183,0,0.10) 0%, transparent 70%);
  pointer-events:none;
}
.h-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.h-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,113,188,0.12);
  border: 1px solid rgba(0,113,188,0.3);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 800;
  color: #0071BC;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.h-hero-eyebrow span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #0071BC;
  display: inline-block;
}
.h-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 24px;
}
.h-hero-title .accent { color: #0071BC; }
.h-hero-title .accent-gold { color: #F5B700; }
.h-hero-desc {
  font-size: 17px;
  line-height: 1.72;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 520px;
}
.h-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.h-hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.h-hero-full-gallery {
  min-height: min(820px, calc(100vh - 72px));
  background: linear-gradient(135deg, #F3F7FA 0%, #FFFFFF 46%, #EAF4FB 100%);
  padding: 0;
  display: grid;
  align-items: stretch;
  isolation: isolate;
}
.h-hero-full-gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.26) 0%, rgba(255,247,237,.14) 43%, rgba(255,255,255,.03) 100%),
    linear-gradient(0deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.02) 48%, rgba(255,247,237,.10) 100%);
  pointer-events: none;
}
.h-hero-full-gallery::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  width: auto;
  height: 42%;
  border-radius: 0;
  z-index: 1;
  background: linear-gradient(0deg, #FFFFFF, rgba(255,255,255,0));
  pointer-events: none;
}
.h-hero-bg,
.h-hero-bg .h-hero-slide {
  position: absolute;
  inset: 0;
}
.h-hero-bg {
  z-index: 0;
  background: #F3F7FA;
}
.h-hero-bg .h-hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 6000ms ease;
}
.h-hero-bg .h-hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.h-hero-full-inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: grid;
  align-content: center;
  padding-top: 88px;
  padding-bottom: 128px;
}
.h-hero-copy-stack {
  position: relative;
  max-width: 760px;
  min-height: 420px;
}
.h-hero-copy {
  position: absolute;
  inset: 0 auto auto 0;
  width: min(760px, 100%);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,247,237,.04));
  box-shadow: 0 20px 54px rgba(0,113,188,.07);
  backdrop-filter: blur(5px) saturate(1.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 620ms cubic-bezier(.2,.8,.2,1), box-shadow 220ms ease, border-color 220ms ease;
}
.h-hero-copy.active {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.h-hero-copy.active:hover {
  border-color: rgba(0,113,188,.20);
  background: linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,247,237,.06));
  box-shadow: 0 24px 64px rgba(245,183,0,.09);
}
.h-hero-anim-fade { transform: none; }
.h-hero-anim-slide { transform: translateX(-28px); }
.h-hero-anim-zoom { transform: scale(.96); }
.h-hero-anim-none,
.h-hero-anim-none.active {
  transform: none;
  transition: none;
}
.h-hero-full-gallery .h-hero-eyebrow {
  color: var(--hero-word-color, #0071BC);
  border-color: rgba(0,113,188,.38);
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0,113,188,.10);
}
.h-hero-full-gallery .h-hero-eyebrow span {
  background: var(--hero-word-color, #0071BC);
}
.h-hero-full-gallery .h-hero-title {
  color: #B45309;
  font-size: clamp(42px, 6vw, var(--hero-title-size, 68px));
  max-width: 760px;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(255,255,255,.72);
}
.h-hero-full-gallery .h-hero-title .accent,
.h-hero-full-gallery .h-hero-title .accent-gold {
  color: var(--hero-word-color, #0071BC);
}
.h-hero-full-gallery .h-hero-desc {
  color: #8A4B12;
  max-width: 620px;
  text-shadow: 0 1px 18px rgba(255,255,255,.78);
}
.h-hero-full-gallery .h-hero-actions {
  margin-bottom: 0;
}
.h-hero-secondary-cta {
  background: rgba(255,255,255,.74);
  color: #B45309;
  border: 1px solid rgba(0,113,188,.22);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(0,113,188,.10);
}
.h-hero-secondary-cta:hover {
  background: #FFFFFF;
  color: #0071BC;
  transform: translateY(-1px);
}
.h-hero-stats-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  width: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  max-width: 520px;
  gap: 12px;
  padding: 0;
  border: 0;
}
.h-hero-stat-card {
  border: 1px solid rgba(0,113,188,.18);
  background: rgba(255,255,255,.78);
  border-radius: 12px;
  padding: 14px 16px;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(0,113,188,.12);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.h-hero-stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,113,188,.34);
  box-shadow: 0 22px 52px rgba(245,183,0,.18);
}
.h-hero-stat-card .h-hero-stat-lbl {
  color: #5D766C;
}
.h-hero-full-gallery .h-hero-gallery-nav {
  background: rgba(255,255,255,var(--hero-nav-opacity,.82));
  color: #B45309;
  border-color: rgba(0,113,188,.22);
  box-shadow: 0 16px 34px rgba(0,113,188,.14);
}
.h-hero-full-gallery .h-hero-gallery-nav:hover {
  color: #0071BC;
  background: #FFFFFF;
  transform: translateY(-50%) scale(1.06);
}
.h-hero-full-gallery .h-hero-gallery-dots span {
  background: rgba(180,83,9,.34);
}
.h-hero-full-gallery .h-hero-gallery-dots span.active {
  background: #0071BC;
}
.h-updates-marquee {
  position: relative;
  z-index: 4;
  background: linear-gradient(180deg, #FFFFFF 0%, #F3F7FA 100%);
  padding: 18px 0 16px;
  border-bottom: 1px solid rgba(0,113,188,.12);
}
.h-updates-shell {
  display: grid;
  grid-template-columns: 280px minmax(0,1fr);
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(0,113,188,.16);
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 16px 38px rgba(0,113,188,.08);
  overflow: hidden;
}
.h-updates-head {
  display: grid;
  gap: 4px;
  padding: 6px 12px;
  border-right: 1px solid rgba(0,113,188,.14);
}
.h-updates-kicker {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 7px;
  color: #0071BC;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.h-updates-kicker::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #F5B700;
  box-shadow: 0 0 0 5px rgba(245,183,0,.16);
}
.h-updates-head strong {
  color: #23624B;
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.25;
}
.h-updates-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.h-updates-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: pyUpdatesMarquee 42s linear infinite;
}
.h-updates-shell:hover .h-updates-track {
  animation-play-state: paused;
}
.h-update-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: 78vw;
  padding: 11px 13px;
  border: 1px solid rgba(35,98,75,.10);
  border-radius: 14px;
  background: linear-gradient(135deg, #FFFFFF, #F3F7FA);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(35,98,75,.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.h-update-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(0,113,188,.32);
  box-shadow: 0 14px 30px rgba(0,113,188,.12);
}
.h-update-source {
  flex: 0 0 auto;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(0,113,188,.10);
  color: #0071BC;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.h-update-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  white-space: nowrap;
}
.h-update-line strong {
  color: #23624B;
  font-size: 13px;
  line-height: 1.25;
  white-space: nowrap;
}
.h-update-line strong::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 8px;
  border-radius: 999px;
  background: #F5B700;
  vertical-align: middle;
}
.h-update-line span {
  color: #5D766C;
  font-size: 12px;
  line-height: 1.35;
  white-space: nowrap;
}
.h-update-pill time {
  flex: 0 0 auto;
  color: #B45309;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(245,183,0,.14);
}
@keyframes pyUpdatesMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.h-hero-stat-strip {
  margin-top: 0;
  position: relative;
  z-index: 3;
  background: linear-gradient(180deg, #F3F7FA 0%, #FFFFFF 100%);
  padding: 16px 0 32px;
}
.h-hero-stat-strip-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
}
.h-hero-stat-strip-grid::-webkit-scrollbar,
.h-stat-carousel-track::-webkit-scrollbar {
  display: none;
}
.h-hero-stat-note {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
}

.h-live-feed {
  background: #fff;
  border-bottom: 1px solid rgba(56,54,88,.08);
  padding: 44px 0 38px;
}
.h-live-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, .9fr);
  gap: 34px;
  align-items: center;
}
.h-live-split {
  grid-template-columns: minmax(250px, 3fr) minmax(0, 7fr);
  align-items: start;
}
.h-live-events-only {
  grid-template-columns: 1fr;
}
.h-live-grid:not(.h-live-single) .h-live-social {
  border-left: 1px solid rgba(100,116,139,.45);
  padding-left: 42px;
}
.h-live-split .h-live-social {
  border-left: 1px solid rgba(100,116,139,.25);
  padding-left: 28px;
}
.h-live-single {
  grid-template-columns: 1fr;
}
.h-live-pane { min-width: 0; }
.h-live-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.h-live-head > span {
  color: #0071BC;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.h-live-arrows {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.h-live-arrows button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #e1e7ef;
  background: #fff;
  color: #1D2433;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(15,23,42,.06);
}
.h-live-arrows button:hover { border-color: #0071BC; color: #0071BC; }
.h-live-arrows svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.h-live-viewport { overflow: hidden; }
.h-live-track {
  display: flex;
  gap: 24px;
  transition: transform 420ms cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.h-live-card {
  flex: 0 0 calc((100% - 24px) / 2);
  color: inherit;
  text-decoration: none;
}
.h-live-social .h-live-track,
.h-live-events .h-live-track,
.h-live-mixed .h-live-track { gap: 12px; }
.h-live-social .h-live-card,
.h-live-events .h-live-card,
.h-live-mixed .h-live-card { flex-basis: calc((100% - 24px) / 3); }
.h-live-single .h-live-social .h-live-card,
.h-live-single .h-live-events .h-live-card,
.h-live-single .h-live-mixed .h-live-card { flex-basis: calc((100% - 48px) / 5); }
.h-live-split .h-live-events .h-live-card { flex-basis: 100%; }
.h-live-split .h-live-social .h-live-card { flex-basis: calc((100% - 36px) / 4); }
.h-live-empty {
  border: 1px dashed #dfe6ee;
  border-radius: 12px;
  background: #fff;
  padding: 22px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.h-live-empty strong {
  display: block;
  color: #1D2433;
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.h-live-empty p {
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}
.h-event-card {
  border: 1px solid #dfe6ee;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  min-height: 280px;
  box-shadow: 0 10px 28px rgba(15,23,42,.06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.h-event-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0,113,188,.42);
  box-shadow: 0 14px 32px rgba(15,23,42,.1);
}
.h-event-card > img {
  display: block;
  width: 100%;
  height: 92px;
  object-fit: cover;
  background: #f1f5f9;
  border-bottom: 1px solid #edf2f7;
}
.h-event-body { padding: 13px 14px 15px; }
.h-event-body span {
  display: block;
  color: #0071BC;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 9px;
}
.h-event-body strong {
  display: block;
  color: #1D2433;
  font-family: var(--font-heading);
  font-size: 14px;
  line-height: 1.25;
  margin-bottom: 7px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.h-event-body small {
  display: block;
  color: #64748b;
  font-size: 11px;
  line-height: 1.35;
  margin-bottom: 8px;
}
.h-event-body p {
  color: #64748b;
  font-size: 12px;
  line-height: 1.45;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.h-social-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #dfe6ee;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  min-height: 255px;
  box-shadow: 0 10px 28px rgba(15,23,42,.06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.h-social-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0,113,188,.42);
  box-shadow: 0 14px 32px rgba(15,23,42,.1);
}
.h-social-card img {
  display: block;
  width: 100%;
  height: 86px;
  object-fit: cover;
  background: #f1f5f9;
  border-bottom: 1px solid #edf2f7;
}
.h-social-card > div {
  padding: 13px 14px 15px;
  min-width: 0;
}
.h-social-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #0071BC;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 9px;
}
.h-social-meta i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #F3F7FA;
  color: #0071BC;
  border: 1px solid rgba(0,113,188,.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.h-social-meta svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}
.h-social-card.facebook .h-social-meta i { background: #eef5ff; color: #1877f2; border-color: rgba(24,119,242,.22); }
.h-social-card.twitter .h-social-meta i,
.h-social-card.x .h-social-meta i { background: #f8fafc; color: #1D2433; border-color: rgba(29,36,51,.16); }
.h-social-card.youtube .h-social-meta i { background: #fff1f2; color: #dc2626; border-color: rgba(220,38,38,.18); }
.h-social-card.instagram .h-social-meta i { background: #fff1f8; color: #db2777; border-color: rgba(219,39,119,.2); }
.h-social-card.linkedin .h-social-meta i { background: #eef7ff; color: #0a66c2; border-color: rgba(10,102,194,.2); }
.h-social-card.tiktok .h-social-meta i { background: #f8fafc; color: #1D2433; border-color: rgba(29,36,51,.16); }
.h-social-card strong {
  display: block;
  color: #1D2433;
  font-family: var(--font-heading);
  font-size: 14px;
  line-height: 1.25;
  margin-bottom: 7px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.h-social-card p {
  color: #64748b;
  font-size: 12px;
  line-height: 1.45;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media(max-width:1050px) {
  .h-live-grid, .h-live-split { grid-template-columns: 1fr; }
  .h-live-grid:not(.h-live-single) .h-live-social { border-left: 0; padding-left: 0; border-top: 1px solid rgba(100,116,139,.25); padding-top: 28px; }
  .h-live-split .h-live-social { border-left: 0; padding-left: 0; border-top: 1px solid rgba(100,116,139,.25); padding-top: 28px; }
  .h-live-social .h-live-card,
  .h-live-events .h-live-card,
  .h-live-mixed .h-live-card,
  .h-live-split .h-live-events .h-live-card,
  .h-live-split .h-live-social .h-live-card,
  .h-live-single .h-live-social .h-live-card,
  .h-live-single .h-live-events .h-live-card,
  .h-live-single .h-live-mixed .h-live-card { flex-basis: calc((100% - 24px) / 3); }
}
@media(max-width:760px) {
  .h-live-feed { padding: 28px 0; }
  .h-live-card { flex-basis: 100%; }
  .h-live-social .h-live-card,
  .h-live-events .h-live-card,
  .h-live-mixed .h-live-card,
  .h-live-split .h-live-events .h-live-card,
  .h-live-split .h-live-social .h-live-card,
  .h-live-single .h-live-social .h-live-card,
  .h-live-single .h-live-events .h-live-card,
  .h-live-single .h-live-mixed .h-live-card { flex-basis: 100%; }
  .h-event-card { min-height: 0; }
  .h-event-card > img { height: 150px; }
  .h-live-head { align-items: flex-start; }
  .h-social-card { min-height: 0; }
  .h-social-card img { height: 150px; }
}
.h-hero-stat-num {
  font-family: var(--font-number);
  font-size: 30px;
  font-weight: 900;
  color: #0071BC;
  line-height: 1;
  display: block;
}
.h-hero-stat-num.h-gold { color: #F5B700; }
.h-hero-stat-lbl {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
/* Hero Visual */
.h-hero-visual {
  position: relative;
}
.h-hero-img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.h-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.h-hero-img-wrap.h-hero-gallery {
  position: relative;
  display: block;
}
.h-hero-gallery .h-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}
.h-hero-gallery .h-hero-slide.active {
  opacity: 1;
}
.h-hero-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  background: rgba(255,255,255,var(--hero-nav-opacity,.72));
  color: #1D2433;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.h-hero-gallery-nav:hover {
  background: rgba(255,255,255,.92);
}
.h-hero-gallery-nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.h-hero-gallery-prev { left: 14px; }
.h-hero-gallery-next { right: 14px; }
.h-hero-gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 3;
}
.h-hero-gallery-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  box-shadow: 0 0 0 1px rgba(0,0,0,.1);
}
.h-hero-gallery-dots span.active {
  width: 22px;
  background: #0071BC;
}
.h-hero-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.25);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 32px;
}
.h-hero-img-placeholder svg { opacity: 0.35; }
/* floating card on hero image */
.h-hero-badge-card {
  position: absolute;
  bottom: 24px;
  left: -32px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.28);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}
.h-hero-badge-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--py-primary-soft);
  color: var(--py-primary);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.h-hero-badge-icon svg { width: 20px; height: 20px; }
.h-hero-badge-num {
  font-family: var(--font-number);
  font-size: 22px; font-weight: 900;
  color: var(--py-charcoal);
  line-height: 1;
}
.h-hero-badge-lbl { font-size: 11px; color: var(--py-muted); font-weight: 600; }

/* -- SECTION: "We raise hope"  -  split with image + text + mini activity -- */
.h-raise {
  background: #FFFFFF;
  padding: 88px 0;
}
.h-raise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.h-raise-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--py-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.h-raise-img img { width:100%; height:100%; object-fit:cover; }
.h-raise-quote {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--py-charcoal);
  line-height: 1.2;
  margin-bottom: 20px;
}
.h-raise-quote .accent { color: var(--py-primary); }
/* mini latest activity sidebar card */
.h-activity-card {
  border: 1px solid var(--py-border);
  border-radius: 16px;
  padding: 20px;
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
}
.h-activity-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--py-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}
.h-activity-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--py-border);
}
.h-activity-item:last-child { border-bottom: none; padding-bottom: 0; }
.h-activity-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--py-primary);
  flex-shrink: 0;
  margin-top: 5px;
}
.h-activity-text { font-size: 13px; color: var(--py-charcoal); font-weight: 600; line-height: 1.4; }
.h-activity-sub  { font-size: 12px; color: var(--py-muted); margin-top: 2px; }

/* -- SECTION: "You can help"  -  orange headline, 4 program icons -- */
.h-help {
  background: var(--py-bg);
  padding: 88px 0;
  text-align: center;
}
.h-help-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--py-charcoal);
  line-height: 1.15;
  margin-bottom: 12px;
}
.h-help-title .accent { color: var(--py-primary); }
.h-help-sub {
  font-size: 16px;
  color: var(--py-muted);
  margin-bottom: 52px;
  max-width: 560px;
  margin-inline: auto;
}
.h-prog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.h-prog-card {
  background: #FFFFFF;
  border: 1px solid var(--py-border);
  border-radius: 18px;
  padding: 28px 20px 24px;
  text-align: center;
  transition: all 200ms ease;
  cursor: default;
}
.h-prog-card:hover {
  border-color: rgba(0,113,188,0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.h-prog-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--py-primary-soft);
  color: var(--py-primary);
  display: grid; place-items: center;
  margin: 0 auto 14px;
  transition: background 200ms, color 200ms;
}
.h-prog-card:hover .h-prog-icon { background: var(--py-primary); color: #FFF; }
.h-prog-icon svg { width: 24px; height: 24px; }
.h-prog-name {
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 700;
  color: var(--py-charcoal);
  line-height: 1.3;
}

/* -- SECTION: "See how PY is responding"  -  2-col project cards -- */
.h-respond {
  background: #FFFFFF;
  padding: 88px 0;
}
.h-respond-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--py-charcoal);
  margin-bottom: 40px;
  text-align: center;
}
.h-respond-title .accent { color: var(--py-primary); }
.h-project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.h-project-card {
  border: 1px solid var(--py-border);
  border-radius: 18px;
  overflow: hidden;
  background: #FFFFFF;
  transition: all 200ms ease;
}
.h-project-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.h-project-img {
  height: 170px;
  background: linear-gradient(135deg, var(--py-primary-soft), var(--py-bg));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.h-project-img img { width:100%; height:100%; object-fit:cover; }
.h-project-img svg { opacity: 0.25; }
.h-project-body { padding: 20px; }
.h-project-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--py-primary-soft);
  color: var(--py-primary);
  border-radius: 99px;
  padding: 4px 10px;
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.h-project-name {
  font-family: var(--font-heading);
  font-size: 16px; font-weight: 700;
  color: var(--py-charcoal);
  margin-bottom: 8px; line-height: 1.35;
}
.h-project-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: var(--py-muted);
  margin-bottom: 10px;
}
.h-project-meta span { display: flex; align-items: center; gap: 4px; }
.h-project-meta svg { width:12px; height:12px; flex-shrink:0; }
.h-project-excerpt {
  font-size: 13px; color: var(--py-muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* -- SECTION: dark banner quote -- */
.h-banner {
  background: #1A1F2E;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.h-banner::before {
  content:'';
  position:absolute; top:-80px; right:-80px;
  width:300px; height:300px; border-radius:50%;
  background: radial-gradient(circle, rgba(0,113,188,0.12) 0%, transparent 70%);
}
.h-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative; z-index:1;
}
.h-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.h-banner-title .accent { color: #0071BC; }
.h-banner-title .accent-gold { color: #F5B700; }
.h-banner-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 440px;
}
/* progress bars */
.h-progress-list { display: flex; flex-direction: column; gap: 18px; }
.h-progress-item {}
.h-progress-label {
  display: flex; justify-content: space-between;
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
}
.h-progress-track {
  height: 6px; border-radius: 99px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}
.h-progress-fill {
  height: 100%; border-radius: 99px;
  background: var(--py-primary);
  transition: width 1.2s ease;
}
.h-progress-fill.h-gold { background: var(--py-gold); }

/* -- SECTION: Trust / Values 4-up -- */
.h-values {
  background: var(--py-bg);
  padding: 88px 0;
}
.h-values-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 52px;
}
.h-values-right { font-size: 15px; color: var(--py-muted); line-height: 1.7; }
.h-val-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.h-val-card {
  background: #FFFFFF;
  border: 1px solid var(--py-border);
  border-radius: 18px;
  padding: 24px 20px;
  transition: all 200ms ease;
}
.h-val-card:hover { border-color: rgba(0,113,188,0.3); transform:translateY(-3px); box-shadow:var(--shadow-sm); }
.h-val-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--py-primary-soft);
  color: var(--py-primary);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.h-val-icon svg { width: 22px; height: 22px; }
.h-val-name {
  font-family: var(--font-heading);
  font-size: 15px; font-weight: 700;
  color: var(--py-charcoal);
  margin-bottom: 6px;
}
.h-val-desc { font-size: 13px; color: var(--py-muted); line-height: 1.55; }

/* -- SECTION: Community action  -  3 story cards -- */
.h-stories {
  background: #FFFFFF;
  padding: 88px 0;
}
.h-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.h-story-card {
  border: 1px solid var(--py-border);
  border-radius: 20px;
  overflow: hidden;
  background: #FFFFFF;
  transition: all 200ms;
}
.h-story-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.h-story-img {
  height: 180px;
  background: linear-gradient(135deg, var(--py-bg), var(--py-primary-soft));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.h-story-img img { width:100%; height:100%; object-fit:cover; }
.h-story-body { padding: 20px; }
.h-story-cat {
  font-size: 11px; font-weight: 800;
  color: var(--py-primary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
  display: block;
}
.h-story-title {
  font-family: var(--font-heading);
  font-size: 15px; font-weight: 700;
  color: var(--py-charcoal);
  line-height: 1.35; margin-bottom: 8px;
}
.h-story-excerpt { font-size: 13px; color: var(--py-muted); line-height: 1.55; }

/* -- SECTION: Programs  -  6-up grid -- */
.h-programs {
  background: var(--py-bg);
  padding: 88px 0;
}
.h-prog6-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.h-prog6-card {
  background: #FFFFFF;
  border: 1px solid var(--py-border);
  border-radius: 18px;
  padding: 24px;
  transition: all 200ms;
}
.h-prog6-card:hover { border-color:rgba(0,113,188,0.3); transform:translateY(-3px); box-shadow:var(--shadow-sm); }
.h-prog6-img {
  height: 130px;
  background: linear-gradient(135deg, var(--py-primary-soft), var(--py-bg));
  border-radius: 12px;
  display: flex; align-items:center; justify-content:center;
  margin-bottom: 16px;
  overflow: hidden;
}
.h-prog6-img img { width:100%; height:100%; object-fit:cover; border-radius:12px; }
.h-prog6-img svg { opacity: 0.2; }
.h-prog6-name {
  font-family: var(--font-heading);
  font-size: 15px; font-weight: 700;
  color: var(--py-charcoal);
  margin-bottom: 6px;
}
.h-prog6-desc { font-size: 13px; color: var(--py-muted); line-height: 1.55; }
.h-prog6-tag {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 10px;
  border-radius: 99px;
  background: var(--py-bg);
  color: var(--py-muted);
  font-size: 11px; font-weight: 700;
  border: 1px solid var(--py-border);
}

/* -- SECTION: Partner Connect -- */
.h-partner-connect {
  background: #FFFFFF;
  padding: 88px 0;
}
.h-partner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.h-partner-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 28px;
}
.h-partner-tag {
  padding: 6px 14px; border-radius: 99px;
  border: 1px solid var(--py-border);
  font-size: 12px; font-weight: 700;
  color: var(--py-charcoal);
  background: var(--py-bg);
  transition: all 180ms;
}
.h-partner-tag:hover { border-color:var(--py-primary); color:var(--py-primary); background:var(--py-primary-soft); }
.h-partner-img {
  border-radius: 20px;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--py-bg);
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-md);
}
.h-partner-img img { width:100%; height:100%; object-fit:cover; }
.h-partner-contact { margin-top: 24px; }
.h-partner-contact a {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--py-charcoal);
  margin-bottom: 8px;
}
.h-partner-contact a svg { width:15px; height:15px; color:var(--py-primary); flex-shrink:0; }

/* -- SECTION: "Your contribution"  -  6 donor icons -- */
.h-contrib {
  background: var(--py-bg);
  padding: 88px 0;
  text-align: center;
}
.h-donor-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.h-donor-card {
  background: var(--logo-bg, #FFFFFF);
  border: 1px solid var(--py-border);
  border-radius: 18px;
  padding: 24px 16px;
  width: var(--logo-card-width, auto);
  min-height: var(--logo-card-height, auto);
  display: flex;
  flex-direction: var(--logo-direction, column);
  align-items: var(--logo-align, center);
  justify-content: var(--logo-justify, center);
  gap: var(--logo-gap, 10px);
  text-align: var(--logo-text-align, center);
  transition: all 200ms;
}
.h-donor-card:hover { border-color:rgba(0,113,188,0.3); transform:translateY(-3px); box-shadow:var(--shadow-sm); }
.h-donor-card img {
  width: var(--logo-size, 72px) !important;
  height: var(--logo-size, 72px) !important;
  object-fit: var(--logo-fit, contain) !important;
  display: block;
  margin: var(--logo-img-margin, 0 auto) !important;
  padding: var(--logo-padding, 0);
  border-radius: var(--logo-radius, 0);
  flex-shrink: 0;
}
.h-donor-orb {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--py-primary);
  display: grid; place-items: center;
}
.h-donor-orb svg { width: 26px; height: 26px; color: #fff; }
.h-donor-name { font-size: 12px; font-weight: 700; color: var(--py-charcoal); text-align:var(--logo-text-align, center); line-height:1.3; }

.py-partner-card[data-logo-card] {
  background: var(--logo-bg, #fff);
  width: var(--logo-card-width, auto);
  min-height: var(--logo-card-height, 80px);
  display: flex;
  flex-direction: var(--logo-direction, column);
  align-items: var(--logo-align, center);
  justify-content: var(--logo-justify, center);
  gap: var(--logo-gap, 10px);
  text-align: var(--logo-text-align, center);
  border-radius: var(--logo-card-radius, var(--radius-md));
  box-sizing: border-box;
  overflow: hidden;
}
.py-partner-card[data-logo-card] img {
  width: var(--logo-size, 72px) !important;
  height: var(--logo-size, 72px) !important;
  object-fit: var(--logo-fit, contain) !important;
  display: block;
  flex-shrink: 0;
  margin: var(--logo-img-margin, 0 auto) !important;
  padding: var(--logo-padding, 0);
  border-radius: var(--logo-radius, 0);
}
.py-partner-card[data-logo-card] .py-logo-label-group {
  width: 100%;
  min-width: 0;
  text-align: var(--logo-text-align, center);
}
.py-partner-card[data-logo-card] .py-partner-logo-label,
.py-partner-card[data-logo-card] .py-partner-logo-full {
  text-align: var(--logo-text-align, center);
}
.py-network-logo-card[data-logo-card] {
  background: var(--logo-bg, transparent);
  display: flex;
  flex-direction: var(--logo-direction, row);
  align-items: var(--logo-align, center);
  justify-content: var(--logo-justify, flex-start);
  gap: var(--logo-gap, 14px);
  text-align: var(--logo-text-align, left);
  border-radius: var(--logo-card-radius, 0);
  width: var(--logo-card-width, auto);
  min-height: var(--logo-card-height, auto);
  box-sizing: border-box;
}
.py-network-logo-card[data-logo-card] img {
  width: var(--logo-size, 56px) !important;
  height: var(--logo-size, 56px) !important;
  object-fit: var(--logo-fit, contain) !important;
  margin: var(--logo-img-margin, 0) !important;
  padding: var(--logo-padding, 0);
  border-radius: var(--logo-radius, 10px);
  flex-shrink: 0;
}
.py-network-logo-card[data-logo-card] .py-logo-label-group {
  text-align: var(--logo-text-align, left);
}

/* -- PARTNER LOGO CAROUSEL -- */
/* ITEM SIZE: fixed 90px wide, 10px gap, 5 visible = 90*5 + 10*4 = 490px min */
:root { --pc-item: 90px; --pc-gap: 10px; }
.py-partner-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.py-pc-viewport {
  flex: 1;
  min-width: 0;
  max-width: 490px;    /* 5 x 90px + 4 x 10px gap = 490px  -  hard CSS clip */
  overflow: hidden;
}
@media (max-width: 600px) {
  .py-pc-viewport { max-width: 290px; }  /* 3 x 90px + 2 x 10px = 290px */
}
.py-pc-track {
  display: flex;
  flex-wrap: nowrap;  /* NEVER wrap onto a second row */
  gap: var(--pc-gap);
  transform: translateX(0);
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.py-pc-item {
  flex: 0 0 var(--pc-item);
  width: var(--logo-card-width, var(--pc-item));
  min-width: var(--logo-card-width, var(--pc-item));
  max-width: var(--logo-card-width, var(--pc-item));
  display: flex;
  flex-direction: var(--logo-direction, column);
  align-items: var(--logo-align, center);
  justify-content: var(--logo-justify, center);
  gap: var(--logo-gap, 6px);
  padding: 8px 4px 10px;
  border: 1px solid var(--py-border);
  border-radius: var(--logo-card-radius, 12px);
  background: var(--logo-bg, #fff);
  min-height: var(--logo-card-height, auto);
  text-align: var(--logo-text-align, center);
  transition: box-shadow 200ms, border-color 200ms;
  box-sizing: border-box;
  overflow: hidden;
}
.py-pc-item:hover { border-color: rgba(0,113,188,0.3); box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.py-pc-item img {
  width: var(--logo-size, 64px) !important;
  height: var(--logo-size, 64px) !important;
  object-fit: var(--logo-fit, contain) !important;
  display: block;
  flex-shrink: 0;
  pointer-events: none;
  margin: var(--logo-img-margin, 0 auto) !important;
  padding: var(--logo-padding, 0);
  border-radius: var(--logo-radius, 0);
}
.py-pc-item.ac-anim-pulse img,
.h-donor-card.ac-anim-pulse img,
.py-partner-card.ac-anim-pulse img,
.py-network-logo-card.ac-anim-pulse img { animation: ac-logo-pulse 1.4s ease-in-out infinite; }
.py-pc-item.ac-anim-spin img,
.h-donor-card.ac-anim-spin img,
.py-partner-card.ac-anim-spin img,
.py-network-logo-card.ac-anim-spin img { animation: ac-logo-spin 2s linear infinite; }
.py-pc-item.ac-anim-bounce img,
.h-donor-card.ac-anim-bounce img,
.py-partner-card.ac-anim-bounce img,
.py-network-logo-card.ac-anim-bounce img { animation: ac-logo-bounce 1s ease-in-out infinite; }
.py-pc-item.ac-anim-shake img,
.h-donor-card.ac-anim-shake img,
.py-partner-card.ac-anim-shake img,
.py-network-logo-card.ac-anim-shake img { animation: ac-logo-shake .5s ease-in-out infinite; }
@keyframes ac-logo-pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.12)} }
@keyframes ac-logo-spin { from{transform:rotate(0)} to{transform:rotate(360deg)} }
@keyframes ac-logo-bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
@keyframes ac-logo-shake { 0%,100%{transform:rotate(0)} 25%{transform:rotate(-7deg)} 75%{transform:rotate(7deg)} }
.py-pc-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--py-muted);
  text-align: var(--logo-text-align, center);
  line-height: 1.3;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 2px;
}
.py-pc-arrow {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--py-border);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--py-charcoal);
  transition: background 180ms, border-color 180ms, color 180ms;
  padding: 0;
  line-height: 1;
}
.py-pc-arrow:hover  { background: var(--py-primary); border-color: var(--py-primary); color: #fff; }
.py-pc-arrow:disabled { opacity: 0.32; cursor: default; pointer-events: none; }

/* -- SECTION: dark bottom stats -- */
.h-stats-dark {
  background: linear-gradient(135deg, #F3F7FA 0%, #FFFFFF 48%, #EAF4FB 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0,113,188,.12);
  border-bottom: 1px solid rgba(0,113,188,.12);
}
.h-stats-dark::before {
  content:'';
  position:absolute;
  inset: 20px 0 auto auto;
  width: min(46vw, 560px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,113,188,.22), transparent);
}
.h-stats-dark-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative; z-index:1;
}
.h-stats-dark-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 900;
  color: #383658;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.h-stats-dark-title .accent { color: #0071BC; }
.h-stats-dark-title .accent-gold { color: #F5B700; }
.h-stats-grid {
  display: flex;
  gap: 20px;
}
.h-stat-item {
  text-align: center;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(0,113,188,.14);
  border-radius: 14px;
  padding: 22px 14px;
  box-shadow: 0 18px 40px rgba(0,113,188,.08);
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  flex: 1 0 180px;
  min-width: 180px;
}
.h-stat-item::before {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #0071BC, #F5B700);
}
.h-stat-item-light {
  flex-basis: calc((100% - 48px) / 5);
  background: rgba(255,255,255,.9);
}
.h-stat-num {
  font-family: var(--font-number);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  color: #0071BC;
  line-height: 1;
  display: block;
}
.h-stat-num.h-gold { color: #F5B700; }
.h-stat-lbl {
  font-size: 12px; font-weight: 700;
  color: #8A4B12;
  display: block; margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.h-stat-carousel {
  position: relative;
}
.h-stat-carousel-track {
  scroll-behavior: smooth;
  scrollbar-width: none;
  overflow-x: auto;
  overflow-y: hidden;
}
.h-stat-carousel-impact .h-stat-item {
  flex-basis: calc((100% - 80px) / 5);
}
.h-stat-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(0,113,188,.22);
  background: rgba(255,255,255,.42);
  color: #C2410C;
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0,113,188,.12);
}
.h-stat-nav:hover {
  background: rgba(255,255,255,.78);
}
.h-stat-nav:disabled {
  opacity: .32;
  cursor: default;
  pointer-events: none;
}
.h-stat-nav svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.h-stat-nav-prev { left: -16px; }
.h-stat-nav-next { right: -16px; }

/* -- SECTION: CTA / Let's work together -- */
.h-final-cta {
  background: #FFFFFF;
  padding: 80px 0;
}
.h-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.h-cta-left-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--py-charcoal);
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.h-cta-left-title .accent { color: var(--py-primary); }
.h-cta-form { display: flex; flex-direction: column; gap: 16px; }
.h-cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.h-newsletter-wrap {
  background: var(--py-charcoal);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.h-newsletter-wrap input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 10px 14px;
  color: #FFF;
  font-size: 14px;
  outline: none;
}
.h-newsletter-wrap input::placeholder { color: rgba(255,255,255,0.4); }
.h-newsletter-wrap input:focus { border-color: var(--py-primary); }

/* -- Responsive -- */
@media (max-width: 1024px) {
  .h-hero-inner  { grid-template-columns: 1fr; }
  .h-hero-visual { display: none; }
  .h-hero-full-gallery { min-height: 740px; }
  .h-hero-full-inner { padding-top: 74px; padding-bottom: 150px; }
  .h-updates-shell { grid-template-columns: 1fr; }
  .h-updates-head {
    border-right: 0;
    border-bottom: 1px solid rgba(0,113,188,.14);
    padding-bottom: 12px;
  }
  .h-prog-grid   { grid-template-columns: repeat(2,1fr); }
  .h-val-grid    { grid-template-columns: repeat(2,1fr); }
  .h-donor-grid  { grid-template-columns: repeat(3,1fr); }
  .h-stats-dark-inner { grid-template-columns: 1fr; }
  .h-stats-grid  { grid-template-columns: repeat(2,1fr); }
  .h-raise-grid  { grid-template-columns: 1fr; }
  .h-banner-inner{ grid-template-columns: 1fr; }
  .h-values-header{ grid-template-columns: 1fr; }
  .h-partner-inner{ grid-template-columns: 1fr; }
  .h-cta-inner   { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .h-hero        { padding: 64px 0 56px; }
  .h-hero-full-gallery { padding: 0; min-height: 720px; }
  .h-hero-full-gallery::before {
    background:
      linear-gradient(0deg, rgba(255,255,255,.24), rgba(255,247,237,.12)),
      linear-gradient(90deg, rgba(255,255,255,.20), rgba(255,255,255,.04));
  }
  .h-hero-copy-stack { min-height: 430px; }
  .h-hero-full-gallery .h-hero-title { font-size: clamp(38px, 11vw, 58px); }
  .h-hero-stats-overlay {
    grid-template-columns: 1fr 1fr;
    left: 16px;
    right: 16px;
    bottom: 18px;
  }
  .h-hero-stat-strip {
    margin-top: 0;
    padding: 16px 0 24px;
  }
  .h-updates-marquee { padding: 14px 0; }
  .h-updates-shell { padding: 12px; border-radius: 14px; }
  .h-update-pill { width: 84vw; }
  .h-hero-stat-strip-grid {
    max-width: none;
    margin-left: 0;
    grid-template-columns: 1fr 1fr;
  }
  .h-prog6-grid  { grid-template-columns: repeat(2,1fr); }
  .h-project-grid{ grid-template-columns: 1fr; }
  .h-story-grid  { grid-template-columns: 1fr; }
  .h-cta-row     { grid-template-columns: 1fr; }
  .h-hero-stats  { gap: 24px; }
}
@media (max-width: 540px) {
  .h-hero-full-inner { padding-top: 54px; padding-bottom: 174px; }
  .h-hero-copy-stack { min-height: 390px; }
  .h-hero-full-gallery .h-hero-actions { gap: 10px; }
  .h-hero-full-gallery .py-btn-lg { width: 100%; justify-content: center; }
  .h-updates-head strong { font-size: 15px; }
  .h-update-pill {
    width: 88vw;
    align-items: flex-start;
  }
  .h-update-pill time { display: none; }
  .h-hero-stats-overlay,
  .h-hero-stat-strip-grid {
    grid-template-columns: 1fr;
  }
  .h-hero-stat-card { padding: 12px 14px; }
  .h-prog-grid   { grid-template-columns: repeat(2,1fr); }
  .h-val-grid    { grid-template-columns: 1fr 1fr; }
  .h-donor-grid  { grid-template-columns: repeat(2,1fr); }
  .h-prog6-grid  { grid-template-columns: 1fr; }
  .h-stats-grid  { grid-template-columns: repeat(2,1fr); }
  .h-stat-item,
  .h-stat-item-light,
  .h-stat-carousel-impact .h-stat-item {
    flex-basis: 72vw;
    min-width: 72vw;
  }
  .h-stat-nav-prev { left: 4px; }
  .h-stat-nav-next { right: 4px; }
}


/* AsliCreate PY: publication thumbnail images */
.py-pub-thumb{
  width:76px;
  height:76px;
  border-radius:14px;
  overflow:hidden;
  flex-shrink:0;
  background:var(--py-bg);
  border:1px solid var(--py-border);
}
.py-pub-thumb img{width:100%;height:100%;object-fit:cover;display:block;}


