@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0e1e40;
  --navy-deep: #0a1733;
  --gold: #d7a40a;
  --gold-hover: #b8890a;
  --light: #f8f9fb;
  --white: #ffffff;
  --text: #374151;
  --text-light: #6b7280;
  --section-pad: 80px 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ── */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-emblem {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.logo-text {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
}

.logo-text span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

nav { flex: 1; }

.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-list a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 4px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.nav-list a:hover { color: var(--gold); }
.nav-list a[aria-current="page"] { color: var(--gold); background: rgba(215,164,10,.12); }

.btn-support {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .1s;
  flex-shrink: 0;
}

.btn-support:hover { background: var(--gold-hover); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  background: var(--navy);
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(215,164,10,.08), transparent);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  background: rgba(215,164,10,.15);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(215,164,10,.3);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(248,249,251,.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  line-height: 1;
  box-sizing: border-box;
  transition: background .2s, transform .1s;
}
.btn-primary svg, .btn-outline svg { flex-shrink: 0; display: block; }
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.35);
  line-height: 1;
  box-sizing: border-box;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-social { display: flex; align-items: center; gap: 12px; }

.hero-social span {
  color: rgba(255,255,255,.5);
  font-size: 13px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 16px;
  transition: background .2s, color .2s;
}
.social-link:hover { background: var(--gold); color: var(--navy); }

.hero-image {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  max-width: 520px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.06);
  border: 1px dashed rgba(215,164,10,.3);
}

.image-placeholder-icon {
  font-size: 40px;
  opacity: .4;
}

/* ── HERO SECONDARY LINK ── */
.hero-link-secondary {
  margin-top: 0;
}
.hero-link-secondary a {
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.35);
  text-underline-offset: 3px;
  transition: color .2s, text-decoration-color .2s;
}
.hero-link-secondary a:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ── WHAT WE DO ── */
.what-we-do {
  background: var(--white);
  padding: var(--section-pad);
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.what-we-do-card {
  background: var(--light);
  border-radius: 12px;
  padding: 28px 24px;
  border-bottom: 3px solid var(--gold);
  transition: box-shadow .2s, transform .2s;
}

.what-we-do-card:hover {
  box-shadow: 0 6px 28px rgba(14,30,64,.1);
  transform: translateY(-3px);
}

.what-we-do-icon {
  width: 52px;
  height: 52px;
  background: rgba(215,164,10,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
}

.what-we-do-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
}

.what-we-do-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .what-we-do-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .what-we-do-grid { grid-template-columns: 1fr; }
}

/* ── STATS ── */
.stats {
  background: var(--white);
  padding: var(--section-pad);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

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

.stat-card {
  background: var(--navy);
  padding: 32px 24px;
  border-radius: 12px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 4px 20px rgba(14,30,64,.12);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── ABOUT ── */
.about {
  padding: var(--section-pad);
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image .image-placeholder {
  background: var(--light);
  border-color: #d1d5db;
  color: var(--text-light);
  aspect-ratio: 1;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 20px;
}

.section-text {
  font-size: 16px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ── DIRECTIONS ── */
.directions {
  background: var(--navy);
  padding: var(--section-pad);
}

.directions .section-title { color: var(--white); }
.directions .section-label { color: var(--gold); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-header .section-text { color: rgba(248,249,251,.75); }

.directions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.direction-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(215,164,10,.2);
  border-radius: 12px;
  padding: 32px;
  transition: background .2s, border-color .2s;
}

.direction-card:hover {
  background: rgba(215,164,10,.08);
  border-color: rgba(215,164,10,.4);
}

.direction-icon {
  width: 52px; height: 52px;
  background: rgba(215,164,10,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.direction-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.direction-text {
  font-size: 14px;
  color: rgba(248,249,251,.7);
  line-height: 1.65;
}

/* ── IMPACT ── */
.impact {
  background: var(--navy);
  padding: var(--section-pad);
}

.impact .section-title { color: var(--white); }
.impact .section-label { color: var(--gold); }

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

.impact-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(215,164,10,.2);
  padding: 36px 28px;
  border-radius: 12px;
  text-align: center;
  transition: background .2s, border-color .2s;
}

.impact-card:hover {
  background: rgba(215,164,10,.08);
  border-color: rgba(215,164,10,.45);
}

.impact-number {
  font-size: 52px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.impact-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.impact-desc {
  font-size: 14px;
  color: rgba(248,249,251,.6);
  line-height: 1.5;
}

/* ── STRATEGY ── */
.strategy {
  background: var(--light);
  padding: var(--section-pad);
}

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

.strategy-grid .strategy-card:nth-child(4) { grid-column: 1 / 2; }
.strategy-grid .strategy-card:nth-child(5) { grid-column: 2 / 3; }

.strategy-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(14,30,64,.08);
  border-bottom: 3px solid var(--gold);
  transition: box-shadow .2s, transform .2s;
}

.strategy-card:hover {
  box-shadow: 0 6px 28px rgba(14,30,64,.13);
  transform: translateY(-3px);
}

.strategy-icon {
  width: 52px;
  height: 52px;
  background: rgba(215,164,10,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}

.strategy-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.strategy-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 10px;
}

.strategy-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── PUBLICATIONS ── */
.publications {
  background: var(--light);
  padding: var(--section-pad);
}

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

.pub-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(14,30,64,.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s, transform .2s;
}

.pub-card:hover {
  box-shadow: 0 6px 28px rgba(14,30,64,.13);
  transform: translateY(-3px);
}

.pub-cover {
  height: 200px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0e1e40, #0a1733);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.pub-cover-title {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  opacity: .85;
}

.pub-tag {
  display: inline-block;
  background: rgba(215,164,10,.12);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  align-self: flex-start;
}

.pub-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
}

.pub-subtitle {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}

.pub-meta {
  font-size: 12px;
  color: var(--text-light);
  padding-top: 12px;
  border-top: 1px solid rgba(14,30,64,.07);
}

.pub-meta strong {
  color: var(--text);
  font-weight: 600;
}

.btn-read {
  display: inline-block;
  margin-top: 4px;
  background: transparent;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 6px;
  border: 2px solid var(--navy);
  text-decoration: none;
  align-self: flex-start;
  transition: background .2s, color .2s;
}

.btn-read:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── SECTION CTA ── */
.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ── BTN OUTLINE NAVY (light-bg sections) ── */
.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid rgba(14,30,64,.35);
  line-height: 1;
  box-sizing: border-box;
  transition: border-color .2s, background .2s;
}
.btn-outline-navy:hover { border-color: var(--navy); background: rgba(14,30,64,.04); }

/* ── PARTNERS SECTION ── */
.partners-section {
  background: var(--light);
  padding: var(--section-pad);
}

.partners-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

.partner-badge {
  display: inline-block;
  background: var(--white);
  border: 1px solid rgba(14,30,64,.2);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: 0 1px 4px rgba(14,30,64,.06);
  transition: border-color .2s, background .2s, box-shadow .2s;
}

.partner-badge:hover {
  border-color: var(--gold);
  background: rgba(215,164,10,.05);
  box-shadow: 0 2px 8px rgba(14,30,64,.1);
}

/* ── PARTNERS ── */
.partners {
  background: var(--white);
  padding: var(--section-pad);
}

.partners-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 48px;
  letter-spacing: 0.5px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
}

.partner-logo {
  height: 64px;
  background: var(--light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
  padding: 8px;
}

/* ── FINAL CTA ── */
.final-cta {
  background: var(--navy-deep);
  padding: 80px 0;
  text-align: center;
}

.final-cta-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-text {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}

.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .final-cta-buttons { flex-direction: column; align-items: center; }
}

/* ── CTA ── */
.cta {
  background: var(--navy-deep);
  padding: 80px 0;
  text-align: center;
}

.cta-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-text {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.projects-cta-light {
  background: var(--white);
  border-top: 1px solid rgba(14,30,64,.08);
  padding: 72px 0;
}

.projects-cta-light .cta-title {
  color: var(--navy);
}

.projects-cta-light .cta-text {
  color: var(--text-light);
}

.projects-cta-light .btn-outline {
  color: var(--navy);
  border-color: rgba(14,30,64,.42);
}

.projects-cta-light .btn-outline:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  padding: 60px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.78);
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}

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

.footer-social-link:focus-visible {
  outline: 3px solid rgba(215,164,10,.35);
  outline-offset: 3px;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px 0; }

  .header-inner { flex-wrap: wrap; }
  nav { order: 3; flex-basis: 100%; }
  .nav-list { justify-content: flex-start; gap: 2px; }
  .nav-list a { font-size: 13px; padding: 5px 8px; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; }
  .image-placeholder { max-width: 100%; aspect-ratio: 16/9; }

  .about-inner { grid-template-columns: 1fr; }
  .directions-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}
/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* ── SKELETON LOADERS ── */
@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton {
  background: linear-gradient(90deg, #e8eaf0 25%, #f4f5f8 50%, #e8eaf0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease infinite;
  border-radius: 4px;
}
.skel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) { .skel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .skel-grid { grid-template-columns: 1fr; } }

/* ── MONITOR BAND (інституційна панель даних) ── */
.monitor-band {
  background: var(--navy);
  padding: 48px 0 40px;
}

.monitor-band-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.monitor-band-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

.monitor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.3);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.monitor-band-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition: opacity .2s;
}
.monitor-band-link:hover { opacity: .75; }

.monitor-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  overflow: hidden;
}

.monitor-kpi {
  padding: 24px 28px;
  background: rgba(255,255,255,.05);
  border-right: 1px solid rgba(255,255,255,.08);
  border-left: 3px solid var(--gold);
  transition: background .2s;
}

.monitor-kpi:hover { background: rgba(255,255,255,.08); }

.monitor-kpi:last-child { border-right: none; }

.monitor-kpi--danger { border-left-color: #ef4444; }

.monitor-kpi-value {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.monitor-kpi-value--sm {
  font-size: 20px;
  line-height: 1.3;
}

.monitor-kpi--danger .monitor-kpi-value { color: #ef4444; }

.monitor-kpi-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  margin-bottom: 3px;
  line-height: 1.3;
}

.monitor-kpi-sub {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  letter-spacing: 0.3px;
}

.monitor-band-footer {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(255,255,255,.3);
  letter-spacing: 0.2px;
}

.monitor-band-footer a {
  color: var(--gold);
  text-decoration: none;
  opacity: .8;
}
.monitor-band-footer a:hover { opacity: 1; text-decoration: underline; }

/* ── PROJECTS ── */
.projects {
  background: var(--white);
  padding: var(--section-pad);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.project-card {
  background: var(--light);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(14,30,64,.08);
  transition: box-shadow .2s, transform .2s;
}

.project-card:hover {
  box-shadow: 0 6px 28px rgba(14,30,64,.1);
  transform: translateY(-3px);
}

.project-card--featured {
  background: var(--navy);
  border-color: rgba(215,164,10,.3);
}

.project-card--featured .project-title { color: var(--white); }
.project-card--featured .project-desc { color: rgba(248,249,251,.75); }
.project-card--featured .project-meta span { color: rgba(248,249,251,.5); }

.project-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(215,164,10,.12);
  padding: 4px 10px;
  border-radius: 20px;
}

.project-status {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.project-status--active {
  background: rgba(74,222,128,.15);
  color: #4ade80;
}

.project-status--new {
  background: rgba(96,165,250,.15);
  color: #60a5fa;
}

.project-status--completed {
  background: rgba(148,163,184,.16);
  color: #64748b;
}

.project-icon {
  width: 48px;
  height: 48px;
  background: rgba(14,30,64,.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.project-card--featured .project-icon {
  background: rgba(215,164,10,.15);
  color: var(--gold);
}

.project-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.project-desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
}

.project-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(14,30,64,.08);
}

.project-card--featured .project-meta {
  border-top-color: rgba(255,255,255,.1);
}

.project-meta span {
  font-size: 12px;
  color: var(--text-light);
}

.btn-project {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition: opacity .2s;
  align-self: flex-start;
}
.btn-project:hover { opacity: .7; }

/* ── NEWSLETTER ── */
.newsletter-form { margin-top: 24px; }

.newsletter-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.newsletter-row {
  display: flex;
  gap: 0;
}

.newsletter-row input {
  flex: 1;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-right: none;
  border-radius: 6px 0 0 6px;
  padding: 10px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--white);
  outline: none;
  transition: border-color .2s;
}

.newsletter-row input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-row input:focus { border-color: rgba(215,164,10,.5); }

.newsletter-row button {
  background: var(--gold);
  border: none;
  border-radius: 0 6px 6px 0;
  padding: 10px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: background .2s;
}
.newsletter-row button:hover { background: var(--gold-hover); }
.newsletter-row button:disabled { opacity: .6; cursor: not-allowed; }

.newsletter-msg {
  font-size: 12px;
  margin-top: 8px;
  min-height: 16px;
}

/* ── RESPONSIVE additions ── */
@media (max-width: 768px) {
  .monitor-band-grid { grid-template-columns: repeat(2, 1fr); }
  .monitor-kpi { padding: 16px 18px; }
  .monitor-kpi-value { font-size: 28px; }
  .projects-grid { grid-template-columns: 1fr; }
  .strategy-grid { grid-template-columns: 1fr; }
  .publications-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .monitor-band-grid { grid-template-columns: 1fr; }
  .monitor-kpi:last-child { border-right: none; }
  .monitor-kpi { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
}

/* ── DONATE PAGE ── */
.donate-hero {
  background: var(--navy);
  padding: 80px 0;
}

.donate-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.donate-hero-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.donate-hero-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(215,164,10,.2);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
}

.donate-hero-stat strong {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.donate-hero-stat span {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  line-height: 1.4;
}

.donate-form-section {
  background: var(--light);
  padding: var(--section-pad);
}

.donate-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.donate-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 32px rgba(14,30,64,.1);
}

.donate-type-toggle {
  display: flex;
  background: var(--light);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 32px;
}

.donate-type-btn {
  flex: 1;
  background: transparent;
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: background .2s, color .2s;
}

.donate-type-btn--active {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(14,30,64,.1);
}

.donate-amounts-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.donate-amounts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.amount-btn {
  background: var(--light);
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 12px 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.amount-btn:hover { border-color: var(--gold); }

.amount-btn--active {
  background: rgba(215,164,10,.12);
  border-color: var(--gold);
}

.donate-custom { margin-top: 8px; }

.donate-custom label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
}

.donate-custom-row {
  display: flex;
  align-items: center;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .2s;
}

.donate-custom-row:focus-within { border-color: var(--gold); }

.donate-custom-row input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
}

.donate-currency {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  background: var(--light);
}

.donate-selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--light);
  border-radius: 8px;
  padding: 14px 18px;
  margin: 24px 0 16px;
}

.donate-selected span { font-size: 14px; color: var(--text-light); }
.donate-selected strong { font-size: 20px; font-weight: 800; color: var(--navy); }

.donate-submit-btn {
  width: 100%;
  background: var(--gold);
  border: none;
  border-radius: 10px;
  padding: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: background .2s, transform .1s;
}

.donate-submit-btn:hover { background: var(--gold-hover); transform: translateY(-1px); }
.donate-submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.donate-note {
  font-size: 13px;
  text-align: center;
  margin-top: 12px;
  min-height: 20px;
  line-height: 1.5;
}

.donate-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 16px;
}

.donate-info-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.allocation-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.allocation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.allocation-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.allocation-pct { font-size: 14px; font-weight: 700; color: var(--gold); }

.allocation-bar {
  height: 6px;
  background: var(--light);
  border-radius: 3px;
  margin-bottom: 6px;
  overflow: hidden;
}

.allocation-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
}

.allocation-desc { font-size: 12px; color: var(--text-light); }

.donate-transparency {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--light);
  border-radius: 10px;
  padding: 20px;
  border-left: 3px solid var(--gold);
}

.donate-transparency svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.donate-transparency strong { display: block; font-size: 14px; color: var(--navy); margin-bottom: 4px; }
.donate-transparency p { font-size: 13px; color: var(--text-light); }
.donate-transparency a { color: var(--gold); text-decoration: none; }

.donate-success {
  background: var(--navy);
  padding: 120px 0;
  text-align: center;
}

.success-inner { max-width: 480px; margin: 0 auto; }

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(74,222,128,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #4ade80;
  margin: 0 auto 24px;
}

.donate-success h2 { font-size: 32px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.donate-success p { font-size: 16px; color: rgba(255,255,255,.7); }

@media (max-width: 768px) {
  .donate-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .donate-hero-numbers { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .donate-layout { grid-template-columns: 1fr; }
  .donate-amounts-grid { grid-template-columns: repeat(2, 1fr); }
  .donate-card { padding: 24px; }
}

@media (max-width: 480px) {
  .donate-hero { padding: 52px 0; }
  .donate-hero-numbers { grid-template-columns: 1fr; gap: 8px; }
  .donate-hero-stat { padding: 14px 16px; display: flex; align-items: center; gap: 14px; text-align: left; }
  .donate-hero-stat strong { font-size: 28px; margin-bottom: 0; }
  .donate-hero-stat span { font-size: 13px; }
}

/* ── BANK DETAILS ── */
.donate-bank {
  margin-top: 32px;
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(14,30,64,.08);
}

.donate-bank-desc {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.donate-bank-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.donate-bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: var(--light);
  border-radius: 8px;
  gap: 16px;
}

.donate-bank-row span {
  font-size: 13px;
  color: var(--text-light);
  flex-shrink: 0;
}

.donate-bank-row strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-align: right;
}

.donate-bank-iban {
  font-family: monospace;
  font-size: 13px !important;
  letter-spacing: 0.5px;
  word-break: break-all;
}

.donate-bank-copy {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--navy);
  border-radius: 8px;
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: background .2s, color .2s;
}

.donate-bank-copy:hover {
  background: var(--navy);
  color: var(--white);
}

.donate-bank--compact {
  margin-top: 24px;
  padding: 24px;
}

.donate-bank--compact .donate-info-title {
  margin-bottom: 12px;
}

.donate-bank--compact .donate-bank-details {
  margin-bottom: 16px;
}

.donate-transfer-options {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(14,30,64,.1);
}

.section-header--compact {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-header--compact .section-title {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 10px;
}

.section-header--compact .section-text {
  max-width: 720px;
}

.donate-transfer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.donate-bank-accordion {
  margin-top: 0;
  padding: 0;
  overflow: hidden;
}

.donate-bank-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
}

.donate-bank-accordion summary::-webkit-details-marker {
  display: none;
}

.donate-bank-accordion summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--light);
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.donate-bank-accordion[open] summary::after {
  content: "−";
  background: var(--gold);
}

.donate-bank-accordion summary strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 4px;
}

.donate-bank-accordion summary small {
  display: block;
  color: var(--text-light);
  font-size: 13px;
}

.donate-bank-accordion > :not(summary) {
  margin-left: 24px;
  margin-right: 24px;
}

.donate-bank-accordion > :last-child {
  margin-bottom: 24px;
}

/* ── PROJECT LANDING: protydiya-movi-vorozhnechi ── */
.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.section-padded {
  padding: var(--section-pad);
}

.section-alt {
  background: var(--light);
}

.section-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.section-desc {
  color: var(--text-light);
  margin-bottom: 32px;
}

.project-method-section {
  align-items: center;
}

.project-method-copy {
  max-width: 640px;
}

.project-method-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 30px 0 22px;
}

.project-method-flow span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(14,30,64,.1);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #f8f9fb);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(14,30,64,.06);
}

.project-method-flow span::before {
  content: '';
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(215,164,10,.14);
}

.project-method-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.methodology-grid {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(14,30,64,.08);
  border-radius: 16px;
  background:
    radial-gradient(circle at 90% 10%, rgba(215,164,10,.18), transparent 26%),
    linear-gradient(135deg, #f8f9fb 0%, #fff 64%);
  box-shadow: 0 20px 54px rgba(14,30,64,.08);
}

.method-card {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(14,30,64,.1);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(14,30,64,.05);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.method-card:hover,
.method-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(215,164,10,.55);
  box-shadow: 0 16px 34px rgba(14,30,64,.1);
}

.method-card[open] {
  border-color: rgba(215,164,10,.75);
}

.method-card:not(details) {
  padding: 18px;
}

.method-card-label {
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.35;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.method-card summary {
  display: grid;
  grid-template-columns: 46px 1fr 20px;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.method-card summary::-webkit-details-marker {
  display: none;
}

.method-card summary::after {
  content: '+';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(215,164,10,.14);
  color: var(--gold);
  font-weight: 900;
  line-height: 1;
}

.method-card[open] summary::after {
  content: '−';
}

.method-card-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.method-card summary strong {
  display: block;
  font-size: 17px;
  line-height: 1.2;
}

.method-card summary small {
  display: block;
  margin-top: 4px;
  color: var(--text-light);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.method-list {
  margin: 0 18px 18px 76px;
  padding-top: 14px;
  border-top: 1px solid rgba(14,30,64,.08);
  font-size: 14px;
  color: #374151;
  line-height: 1.65;
}

.method-card:not(details) .method-list {
  margin: 0;
  padding-top: 0;
  border-top: 0;
  list-style: none;
}

.method-card:not(details) .method-list li {
  margin: 0;
}

.project-strategy-link {
  background: linear-gradient(180deg, #fff 0%, #f8f9fb 100%);
}

.project-strategy-header {
  max-width: 820px;
  margin-bottom: 28px;
}

.project-strategy-header .section-title {
  margin-bottom: 12px;
}

.project-strategy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.project-strategy-card {
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(14,30,64,.08);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(14,30,64,.05);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}

.project-strategy-card:hover {
  transform: translateY(-3px);
  border-color: rgba(215,164,10,.48);
  box-shadow: 0 12px 30px rgba(14,30,64,.1);
}

.project-strategy-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(215,164,10,.14);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-strategy-card h3 {
  color: var(--navy);
  font-size: 17px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.project-strategy-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.project-inline-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.project-inline-link:hover {
  color: var(--gold);
}

.project-impact-strip {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 22px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
}

.project-impact-strip strong {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-impact-strip p {
  color: rgba(255,255,255,.78);
  line-height: 1.65;
  margin: 0;
}

.monitor-process {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  position: relative;
  background: var(--light);
  border: 1px solid rgba(14,30,64,.08);
  border-radius: 12px;
  padding: 24px 22px;
  box-shadow: 0 2px 14px rgba(14,30,64,.05);
}

.process-card::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -14px;
  width: 22px;
  height: 2px;
  background: rgba(215,164,10,.45);
}

.process-card:last-child::after {
  display: none;
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.process-card h3 {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 10px;
}

.process-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.65;
}

.stat-value {
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-value--sm {
  font-size: 22px;
  word-break: break-word;
}

.stat-card--alert {
  border-top-color: #ef4444;
}

.stat-card--alert .stat-value {
  color: #ef4444;
}

.stat-card--meta {
  border-top-color: #94a3b8;
}

.stat-card--meta .stat-value {
  color: #94a3b8;
}

.stats-error {
  text-align: center;
  color: #ef4444;
  font-size: 15px;
  margin-top: 24px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.team-card {
  display: flex;
  gap: 20px;
  background: var(--white);
  border: 1px solid rgba(14,30,64,.1);
  border-radius: 12px;
  padding: 24px;
  align-items: flex-start;
}

.team-avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
}

.team-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.team-desc {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .section-grid-2 { grid-template-columns: 1fr; }
  .project-method-flow { grid-template-columns: 1fr; }
  .methodology-grid { grid-template-columns: 1fr; }
  .project-strategy-grid { grid-template-columns: repeat(2, 1fr); }
  .project-impact-strip { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-card::after { display: none; }
  .stat-value { font-size: 36px; }
  .team-card { flex-direction: column; }
}

@media (max-width: 640px) {
  .methodology-grid { padding: 12px; }
  .method-card summary { grid-template-columns: 38px 1fr 20px; padding: 14px; }
  .method-card-kicker { width: 36px; height: 36px; border-radius: 9px; }
  .method-list { margin: 0 14px 16px 64px; }
  .project-strategy-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}

/* ── PAGE HERO (внутрішні сторінки) ── */
.page-hero {
  background: var(--navy);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(215,164,10,.07), transparent);
  pointer-events: none;
}

.page-hero .hero-badge { margin-bottom: 20px; }

.page-hero-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 760px;
}

.page-hero-desc {
  font-size: 17px;
  color: rgba(248,249,251,.8);
  line-height: 1.7;
  max-width: 680px;
}

/* ── PROJECTS PAGE GRID ── */
.projects-page {
  background: var(--light);
  padding: var(--section-pad);
}

.projects-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.projects-page-grid--single {
  grid-template-columns: 1fr;
}

.projects-page-grid--single .project-page-card {
  max-width: none;
}

.projects-page-grid--single .project-page-card-inner {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .72fr);
  grid-template-areas:
    "top top"
    "icon meta"
    "title meta"
    "desc goals"
    "desc date"
    "cta cta";
  column-gap: 36px;
  align-items: start;
}

.projects-page-grid--single .project-page-top { grid-area: top; }
.projects-page-grid--single .project-page-icon { grid-area: icon; }
.projects-page-grid--single .project-page-title { grid-area: title; }
.projects-page-grid--single .project-page-desc { grid-area: desc; }
.projects-page-grid--single .project-strategy-compact { grid-area: meta; }
.projects-page-grid--single .project-strategy-tags { grid-area: meta; align-self: start; margin-top: 48px; }
.projects-page-grid--single .project-strategy-outcome { grid-area: meta; align-self: start; margin-top: 94px; }
.projects-page-grid--single .project-page-goals { grid-area: goals; }
.projects-page-grid--single .project-page-meta { grid-area: date; align-self: start; margin-top: 4px; }
.projects-page-grid--single .project-page-card .btn-primary,
.projects-page-grid--single .project-page-card .btn-outline-navy {
  grid-area: cta;
  justify-self: start;
}

.projects-strategy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 46px;
}

.projects-strategy-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid rgba(14,30,64,.12);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  padding: 10px 16px;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.projects-strategy-nav a:hover {
  border-color: rgba(215,164,10,.55);
  box-shadow: 0 6px 18px rgba(14,30,64,.08);
  transform: translateY(-1px);
}

.project-page-group {
  margin-bottom: 68px;
  scroll-margin-top: 112px;
}

.project-page-group:last-child {
  margin-bottom: 0;
}

.project-page-group-head {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(280px, 520px);
  gap: 32px;
  align-items: end;
  margin-bottom: 24px;
}

.project-page-group-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1.3;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.project-page-group-title {
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.18;
  margin: 0;
}

.project-page-group-desc {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.65;
  max-width: 520px;
  margin: 0;
}

.project-page-card {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(14,30,64,.08);
  box-shadow: 0 2px 16px rgba(14,30,64,.07);
  transition: box-shadow .2s, transform .2s;
}

.project-page-card:hover {
  box-shadow: 0 8px 32px rgba(14,30,64,.12);
  transform: translateY(-3px);
}

.project-page-card--featured {
  background: var(--navy);
  border-color: rgba(215,164,10,.3);
}

.project-page-card-inner {
  padding: 34px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-page-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.project-page-icon {
  width: 52px;
  height: 52px;
  background: rgba(14,30,64,.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--navy);
  flex-shrink: 0;
}

.project-page-card--featured .project-page-icon {
  background: rgba(215,164,10,.15);
  color: var(--gold);
}

.project-page-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
}

.project-page-card--featured .project-page-title { color: var(--white); }

.project-page-desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 18px;
}

.project-page-card--featured .project-page-desc { color: rgba(248,249,251,.8); }

.project-page-goals {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-page-goals li {
  font-size: 13px;
  color: var(--text-light);
  padding-left: 18px;
  position: relative;
}

.project-page-goals li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.project-page-card--featured .project-page-goals li { color: rgba(248,249,251,.65); }

.project-strategy-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

.project-strategy-compact span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  background: rgba(14,30,64,.06);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  padding: 7px 11px;
}

.project-page-card--featured .project-strategy-compact span {
  background: rgba(255,255,255,.1);
  color: rgba(248,249,251,.88);
}

.project-strategy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 16px;
}

.project-strategy-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  background: rgba(215,164,10,.13);
  color: #9b6f00;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  padding: 7px 10px;
}

.project-page-card--featured .project-strategy-tag {
  background: rgba(215,164,10,.18);
  color: var(--gold);
}

.project-strategy-outcome {
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 18px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(14,30,64,.08);
}

.project-strategy-outcome strong {
  color: var(--navy);
}

.project-page-card--featured .project-strategy-outcome {
  color: rgba(248,249,251,.66);
  border-bottom-color: rgba(255,255,255,.1);
}

.project-page-card--featured .project-strategy-outcome strong {
  color: var(--gold);
}

.project-page-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(14,30,64,.08);
  margin-bottom: 4px;
}

.project-page-card--featured .project-page-meta { border-top-color: rgba(255,255,255,.1); }

.project-page-meta span {
  font-size: 12px;
  color: var(--text-light);
}

.project-page-card--featured .project-page-meta span { color: rgba(248,249,251,.5); }

/* ── ARCHIVE PROJECTS ── */
.archive-projects {
  background: var(--white);
  padding: var(--section-pad);
  scroll-margin-top: 112px;
}

.project-page-card--archive {
  background:
    linear-gradient(180deg, rgba(248,249,251,.72), rgba(255,255,255,.98)),
    var(--white);
}

.project-page-card--archive .project-page-icon {
  background: rgba(215,164,10,.13);
  color: var(--navy);
}

.project-page-card--archive .project-strategy-outcome {
  min-height: 62px;
}

/* ── PROJECTS SERVICE DIRECTIONS ── */
.service-directions {
  background: var(--gold);
  padding: var(--section-pad);
  scroll-margin-top: 112px;
}

.service-directions .section-label {
  color: rgba(14,30,64,.58);
}

.service-directions .section-title {
  color: var(--navy);
}

.service-directions .section-text {
  color: rgba(14,30,64,.72);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(14,30,64,.14);
  padding: 36px 32px;
}

.service-strategy {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}

.service-strategy span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  background: rgba(14,30,64,.07);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  padding: 7px 10px;
}

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef0f4;
  border-radius: 14px;
  color: var(--navy);
  margin-bottom: 22px;
}

.service-meta {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.4;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.service-title {
  color: var(--navy);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 14px;
}

.service-goal {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.service-goal strong {
  color: var(--text);
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.service-btn:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
}

/* ── BTN OUTLINE NAVY ── */
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid var(--navy);
  transition: background .2s, color .2s;
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

@media (max-width: 768px) {
  .projects-page-grid,
  .projects-page-grid--single { grid-template-columns: 1fr; }
  .projects-page-grid--single .project-page-card-inner {
    display: flex;
  }
  .projects-page-grid--single .project-strategy-tags,
  .projects-page-grid--single .project-strategy-outcome,
  .projects-page-grid--single .project-page-meta {
    margin-top: 0;
  }
  .project-page-group-head { display: block; }
  .project-page-group-desc { margin-top: 10px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 24px; }
  .page-hero { padding: 52px 0 44px; }
  .page-hero-title { font-size: 26px; }
}

/* ── BURGER / MOBILE NAV ── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 8px;
  border-radius: 8px;
  transition: background .18s;
}
.burger:hover { background: rgba(14,30,64,.07); }
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(14,30,64,.55);
  backdrop-filter: blur(4px);
}
.mobile-nav.is-open { display: block; }
.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: var(--white);
  padding: 24px 28px 40px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(14,30,64,.18);
}
.mobile-nav-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--navy);
  padding: 4px;
  margin-bottom: 24px;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.mobile-nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: 10px;
  transition: background .15s;
}
.mobile-nav-links a:hover,
.mobile-nav-links a[aria-current="page"] { background: rgba(14,30,64,.07); }
.mobile-nav-support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 14px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  border-radius: 10px;
  text-align: center;
}

@media (max-width: 860px) {
  .burger { display: flex; }
  .site-header nav { display: none; }
  .site-header .btn-support { display: none; }
}

/* Correspondent banks (pidtrymaty) */
.donate-corr-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin: 20px 0 10px;
}
.donate-corr-banks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.donate-corr-item {
  background: var(--light);
  border-radius: 10px;
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
}
.donate-corr-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 3px 0;
  font-size: 13px;
}
.donate-corr-row span {
  color: var(--text-light);
  flex-shrink: 0;
  min-width: 68px;
}
.donate-corr-row strong {
  color: var(--navy);
  font-weight: 700;
  text-align: right;
  word-break: break-word;
  font-size: 13px;
}

@media (max-width: 480px) {
  .donate-bank { padding: 20px 16px; }
  .donate-bank-accordion { padding: 0; }
  .donate-bank-accordion summary { padding: 18px 16px; }
  .donate-bank-accordion > :not(summary) {
    margin-left: 16px;
    margin-right: 16px;
  }
  .donate-bank-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .donate-bank-row strong {
    width: 100%;
    text-align: left;
    font-size: 13px;
  }
  .donate-bank-copy {
    width: 100%;
    justify-content: center;
  }
  .donate-corr-item { padding: 10px 12px; }
  .donate-corr-row {
    flex-direction: column;
    gap: 2px;
  }
  .donate-corr-row strong {
    text-align: left;
    font-size: 12px;
  }
}

@media (max-width: 760px) {
  .donate-transfer-options {
    margin-top: 40px;
    padding-top: 32px;
  }
  .donate-transfer-grid {
    grid-template-columns: 1fr;
  }
}

/* Newsletter consent checkbox (footer) */
.newsletter-consent-row {
  display: flex;
  gap: 7px;
  align-items: flex-start;
  margin: 8px 0 2px;
}
.newsletter-consent-row input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
  width: 13px;
  height: 13px;
  cursor: pointer;
}
.newsletter-consent-row label {
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .5);
  cursor: pointer;
}
.newsletter-consent-row label a {
  color: rgba(255, 255, 255, .7);
  text-decoration: underline;
}
.newsletter-consent-row label a:hover {
  color: var(--gold);
}
