/* ============================================================
   Надёжные люди — фонд друзей · Design System
   Colors from logo: green #18914C, blue #47B9E6, orange #F0A000
   ============================================================ */

:root {
  /* brand */
  --green:        #18914C;
  --green-700:    #137A3F;
  --green-800:    #0F6233;
  --green-100:    #D6EEDF;
  --green-50:     #EBF7F0;
  --blue:         #47B9E6;
  --blue-600:     #2EA6D8;
  --blue-700:     #1E8DBE;
  --blue-100:     #D6EEF9;
  --blue-50:      #EAF7FC;
  --orange:       #F0A000;
  --orange-600:   #DB8E00;
  --orange-700:   #BE7A00;
  --orange-100:   #FFE9BC;
  --orange-50:    #FFF5DD;

  /* neutrals (warm) */
  --ink:          #2C2A26;
  --ink-soft:     #5E5A52;
  --ink-faint:    #908B81;
  --paper:        #FFFFFF;
  --cream:        #FFF9F0;
  --cream-2:      #FBF3E6;
  --line:         #EEE7DA;
  --line-strong:  #E2D9C8;

  /* type */
  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body:    'Nunito', system-ui, sans-serif;

  /* radius */
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 30px;
  --r-xl: 44px;
  --r-pill: 999px;

  /* shadow */
  --sh-sm: 0 2px 8px rgba(44,42,38,.06);
  --sh-md: 0 10px 30px rgba(44,42,38,.09);
  --sh-lg: 0 26px 60px rgba(44,42,38,.14);
  --sh-green: 0 14px 30px rgba(24,145,76,.28);
  --sh-orange: 0 14px 30px rgba(240,160,0,.32);
  --sh-blue: 0 14px 30px rgba(71,185,230,.30);

  --maxw: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 880px; }
.section { padding: 96px 0; position: relative; }
.section-sm { padding: 64px 0; }

.eyebrow {
  display: block;
  font-family: var(--font-display);
  font-weight: 700; font-size: 15px;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--green); line-height: 1.3;
}
.eyebrow::before {
  content: ''; display: inline-block; width: 26px; height: 4px; border-radius: 999px;
  background: var(--orange); vertical-align: middle; margin-right: 9px; margin-bottom: 3px;
}
.eyebrow.is-blue { color: var(--blue-700); }
.eyebrow.is-blue::before { background: var(--blue); }
.eyebrow.is-orange { color: var(--orange); }
.eyebrow.is-orange::before { background: var(--green); }
.eyebrow.bar-green::before { background: var(--green); }

.h-xl { font-size: clamp(36px, 4.8vw, 70px); }
.h-lg { font-size: clamp(32px, 4.4vw, 54px); }
.h-md { font-size: clamp(26px, 3vw, 38px); }
.lead { font-size: clamp(18px, 1.5vw, 22px); color: var(--ink-soft); line-height: 1.55; }

.text-green { color: var(--green); }
.text-blue { color: var(--blue-700); }
.text-orange { color: var(--orange-600); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 17px; line-height: 1;
  padding: 16px 28px; border-radius: var(--r-pill);
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap; cursor: pointer;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-lg { padding: 19px 36px; font-size: 19px; }
.btn-sm { padding: 12px 20px; font-size: 15px; }

.btn-orange { background: var(--orange); color: #fff; box-shadow: var(--sh-orange); }
.btn-orange:hover { background: var(--orange-600); transform: translateY(-2px); }
.btn-green { background: var(--green); color: #fff; box-shadow: var(--sh-green); }
.btn-green:hover { background: var(--green-700); transform: translateY(-2px); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: var(--sh-blue); }
.btn-blue:hover { background: var(--blue-600); transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 2px var(--line-strong); }
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--green); color: var(--green); transform: translateY(-2px); }
.btn-white { background:#fff; color: var(--green-700); box-shadow: var(--sh-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }

/* ---------- card ---------- */
.card {
  background: #fff; border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .25s ease;
}
.card-hover:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }

/* ---------- pill / chip ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 14px;
  background: var(--cream-2); color: var(--ink-soft);
}

/* blob decoration */
.blob {
  position: absolute; border-radius: 50% 48% 52% 50% / 50% 52% 48% 50%;
  filter: blur(2px); opacity: .5; z-index: 0; pointer-events: none;
}

/* squiggle underline */
.squiggle { display: inline-block; position: relative; white-space: nowrap; }
.squiggle svg { position: absolute; left: 0; bottom: -.34em; width: 100%; height: .42em; }

/* utility */
.stack { display: flex; flex-direction: column; }
.row { display: flex; align-items: center; }
.grid { display: grid; }
.center { display: flex; align-items: center; justify-content: center; }

::selection { background: var(--green-100); color: var(--green-800); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
  padding: 14px 0;
}
.header.is-scrolled {
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(44,42,38,.07);
  padding: 8px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo-btn { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.logo-btn img { display: block; height: var(--logo-height, 46px); width: auto; max-width: none; object-fit: contain; flex: 0 0 auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1; text-align: left; }
.logo-text-1 { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--green); letter-spacing: -.01em; }
.logo-text-2 { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--ink); margin-top: 2px; }

.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: var(--font-body); font-weight: 700; font-size: 16px;
  color: var(--ink-soft); padding: 10px 15px; border-radius: var(--r-pill);
  transition: color .15s ease, background .15s ease;
}
.nav-link:hover { color: var(--green); background: var(--green-50); }
.nav-link.active { color: var(--green-800); background: var(--green-50); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.burger { display: none; width: 44px; height: 44px; border-radius: 14px; color: var(--ink); align-items: center; justify-content: center; }
.burger:hover { background: var(--cream-2); }

.mobile-menu { position: fixed; inset: 0; z-index: 200; background: rgba(44,42,38,.4); backdrop-filter: blur(3px); animation: pageIn .25s ease; }
.mobile-sheet { position: absolute; top: 12px; right: 12px; left: 12px; background: #fff; border-radius: var(--r-lg); padding: 18px; box-shadow: var(--sh-lg); }
.mobile-link { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 16px 14px; font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--ink); border-radius: var(--r-md); border-bottom: 1px solid var(--line); }
.mobile-link:last-of-type { border-bottom: none; }
.mobile-link.active { color: var(--green); }

@media (max-width: 920px) {
  .nav-desktop { display: none; }
  .burger { display: inline-flex; }
  .hide-sm { display: none !important; }
  .logo-text-2 { display: none; }
  .logo-btn img { width: clamp(112px, 32vw, 150px); height: auto; }
}

/* ============================================================
   STAT
   ============================================================ */
.stat-value { font-family: var(--font-display); font-weight: 800; font-size: clamp(36px, 4vw, 52px); line-height: 1; }
.stat-label { color: var(--ink-soft); font-weight: 600; font-size: 16px; margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--cream); margin-top: 40px; }
.footer-cta { background: linear-gradient(135deg, var(--green) 0%, var(--green-700) 55%, var(--blue-700) 140%); position: relative; overflow: hidden; }
.footer-cta::after { content: ''; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; background: rgba(255,255,255,.08); border-radius: 50%; }
.footer-cta::before { content: ''; position: absolute; left: -60px; bottom: -120px; width: 260px; height: 260px; background: rgba(240,160,0,.18); border-radius: 50%; }
.footer-cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; padding: 72px 28px; }
.footer-cta-btns { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.footer-cta-btns .btn { width: 100%; }

.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding: 64px 0 40px; }
.footer-brand p { line-height: 1.55; }
.vk-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; font-weight: 700; color: var(--ink); }
.vk-link:hover { color: var(--blue-700); }
.vk-badge { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 10px; background: var(--blue); object-fit: contain; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-family: var(--font-display); font-size: 18px; margin-bottom: 4px; }
.footer-col a, .footer-col button { text-align: left; color: var(--ink-soft); font-weight: 600; font-size: 16px; display: inline-flex; align-items: center; gap: 8px; transition: color .15s ease; }
.footer-col a:hover, .footer-col button:hover { color: var(--green); }
.footer-col span { color: var(--ink-soft); font-weight: 600; font-size: 16px; display: inline-flex; align-items: flex-start; gap: 8px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0 40px; border-top: 1px solid var(--line-strong); color: var(--ink-faint); font-size: 14px; font-weight: 600; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a, .footer-legal button { color: var(--ink-faint); font-weight: 600; font-size: 14px; }
.footer-legal a:hover, .footer-legal button:hover { color: var(--green); }

@media (max-width: 920px) {
  .footer-cta-inner { grid-template-columns: 1fr; gap: 28px; padding: 56px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-cta .footer-cta-inner { gap: 32px; padding: 64px 20px 88px; }
  .footer-cta-btns { gap: 18px; }
  .footer-cta-btns .btn { min-height: 58px; padding-inline: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer .footer-bottom { flex-direction: column; align-items: flex-start; padding: 26px 20px 44px; gap: 18px; }
  .footer-legal { flex-wrap: wrap; gap: 12px 16px; width: 100%; }
  .footer-legal a, .footer-legal button { white-space: normal; }
}

/* scroll-reveal — transform-only so content is NEVER hidden if the engine is throttled */
.reveal { transform: translateY(26px); transition: transform .65s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.reveal.in { transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { transform: none; transition: none; } }

@media (max-width: 760px) {
  body { font-size: 17px; }
  .section { padding: 64px 0; }
  .wrap { padding: 0 20px; }
}


/* ============================================================
   Section styles · Надёжные люди
   ============================================================ */

.section-cream { background: var(--cream); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }

/* ---------- HERO ---------- */
.hero { position: relative; overflow: hidden; padding: 48px 0 64px; }
.hero-inner { display: grid; grid-template-columns: 1.12fr .88fr; gap: 44px; align-items: center; position: relative; z-index: 1; }
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; }
.hero-title { margin-top: 20px; font-size: clamp(24px, 3vw, 42px); }
.hero-lead { margin-top: 22px; max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 30px; color: var(--ink-soft); font-weight: 600; font-size: 15px; max-width: 420px; }
.hero-trust-faces { display: flex; }
.hero-trust-faces span { width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-display); font-weight: 800; border: 3px solid var(--paper); margin-left: -12px; }
.hero-trust-faces span:first-child { margin-left: 0; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 500px; padding: 22px 20px 8px; isolation: isolate; }
.hero-art-bg { position: absolute; top: 50%; left: 50%; transform: translate(-48%, -50%); width: min(500px, 96%); height: min(500px, 96%); border-radius: 44% 56% 51% 49% / 52% 47% 53% 48%; background:
  radial-gradient(circle at 36% 28%, rgba(255,255,255,.92) 0 22%, rgba(255,255,255,0) 23%),
  linear-gradient(150deg, rgba(232,247,238,.94), rgba(228,247,255,.9));
  box-shadow: inset 0 0 0 1px rgba(24,145,76,.08), 0 34px 70px rgba(71,185,230,.14);
}
.hero-art-halo { position: absolute; z-index: 1; width: min(520px, 100%); height: auto; color: var(--orange); opacity: .46; transform: translate(8px, 6px) rotate(-3deg); filter: drop-shadow(0 18px 36px rgba(240,160,0,.12)); }
.hero-art-halo path:first-child { fill: rgba(255,255,255,.46); stroke: currentColor; stroke-width: 8; stroke-linecap: round; stroke-linejoin: round; }
.hero-art-halo path:last-child { fill: none; stroke: var(--green); stroke-width: 5; stroke-linecap: round; stroke-dasharray: 26 18; opacity: .48; }
.hero-art { position: relative; z-index: 2; width: 78%; max-width: 405px; height: auto; filter: drop-shadow(0 28px 34px rgba(44,42,38,.18)); transform: translateY(6px); }
.float-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.92); padding: 12px 16px; border: 1px solid rgba(24,145,76,.08); border-radius: var(--r-md); box-shadow: var(--sh-md); white-space: nowrap; backdrop-filter: blur(10px); }
.float-card b { display: block; font-family: var(--font-display); font-size: 16px; line-height: 1.1; }
.float-card span { font-size: 13px; color: var(--ink-soft); }
.fc-icon { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fc-1 { top: 10%; left: -8%; animation: floaty 6s ease-in-out infinite; }
.fc-2 { bottom: 12%; left: 0; animation: floaty 7s ease-in-out infinite .5s; }
.fc-3 { top: 56%; right: -9%; animation: floaty 6.5s ease-in-out infinite 1s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- STAT STRIP ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-md); padding: 36px 28px; margin-top: -8px; }
.stat-strip-item { text-align: center; padding: 0 8px; border-right: 1px solid var(--line); }
.stat-strip-item:last-child { border-right: none; }
.stat-strip .stat-label { font-size: 14px; line-height: 1.35; }

/* ---------- ABOUT TEASER ---------- */
.about-teaser { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.about-photo { position: relative; }
.about-photo-image { width: 100%; height: 440px; display: block; object-fit: cover; border-radius: 30px; box-shadow: var(--sh-md); }
.about-photo-badge { position: absolute; bottom: 20px; left: 20px; display: flex; align-items: center; gap: 8px; background: #fff; padding: 10px 16px; border-radius: var(--r-pill); box-shadow: var(--sh-md); font-weight: 700; font-size: 14px; color: var(--green); }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; color: var(--ink); }
.check-list li svg { color: var(--green); flex-shrink: 0; margin-top: 2px; background: var(--green-50); border-radius: 50%; padding: 4px; width: 28px; height: 28px; }
.about-actions { display: flex; align-items: center; gap: 22px; margin-top: 30px; flex-wrap: wrap; }
.report-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); }
.report-link:hover { color: var(--green); }
.report-link svg { color: var(--green); }

/* ---------- MENTOR CARDS ---------- */
.mentor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.mentor-card { text-align: left; padding: 30px 26px; display: flex; flex-direction: column; height: 100%; }
.mentor-card-icon { width: 60px; height: 60px; border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.mentor-card-title { font-size: 22px; margin-bottom: 10px; }
.mentor-card-text { color: var(--ink-soft); font-size: 16px; flex: 1; }
.mentor-card-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 700; font-size: 15px; margin-top: 18px; transition: gap .18s ease; }
.mentor-card:hover .mentor-card-link { gap: 11px; }

/* ---------- IMPACT ---------- */
.impact-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 48px; }
.impact-head-side { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.impact-item { position: relative; padding-top: 18px; border-top: 3px solid var(--line-strong); }
.impact-num { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--orange); }
.impact-icon { width: 54px; height: 54px; border-radius: 16px; background: var(--cream-2); color: var(--green); display: flex; align-items: center; justify-content: center; margin: 16px 0 14px; }
.impact-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.impact-text { color: var(--ink-soft); font-size: 15px; margin-top: 8px; }

/* ---------- STORY ---------- */
.story { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.story-photo-wrap { position: relative; }
.story-real-photo { width: 100%; height: 480px; object-fit: cover; object-position: 50% 28%; border-radius: var(--r-lg); box-shadow: var(--sh-md); display: block; }
.story-quote { position: relative; }
.story-q-mark { color: var(--green-100); }
.story-text { font-family: var(--font-display); font-weight: 600; font-size: clamp(24px, 3vw, 34px); line-height: 1.28; margin: 4px 0 0; color: var(--ink); }
.story-author { margin-top: 26px; display: flex; flex-direction: column; }
.story-author-name { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--green); }
.story-author-role { color: var(--ink-soft); font-size: 15px; }
.story-note { color: var(--ink-faint); font-size: 13px; margin-top: 18px; }

/* ---------- NEWS ---------- */
.news-head-copy { display: flex; flex-direction: column; gap: 6px; }
.news-meta { margin: 0; color: var(--ink-faint); font-size: 13px; font-weight: 700; }
.vk-cta { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.vk-cta:hover { color: var(--blue-700); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { overflow: hidden; display: flex; flex-direction: column; }
.news-thumb { position: relative; aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.news-thumb-green { background: linear-gradient(140deg, var(--green-50), var(--green-100)); }
.news-thumb-blue { background: linear-gradient(140deg, var(--blue-50), var(--blue-100)); }
.news-thumb-orange { background: linear-gradient(140deg, var(--orange-50), var(--orange-100)); }
.news-thumb-art { height: 120px; width: auto; opacity: .92; transition: transform .3s ease; }
.news-thumb-media { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.news-card:hover .news-thumb-art { transform: scale(1.06) rotate(-2deg); }
.news-card:hover .news-thumb-media { transform: scale(1.04); }
.news-tag { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.92); padding: 5px 12px; border-radius: 999px; font-weight: 700; font-size: 12px; color: var(--ink); }
.news-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.news-date { color: var(--ink-faint); font-weight: 700; font-size: 13px; }
.news-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; line-height: 1.18; margin: 8px 0 10px; }
.news-text { color: var(--ink-soft); font-size: 15px; flex: 1; }
.news-readmore { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-family: var(--font-display); font-weight: 700; font-size: 15px; margin-top: 16px; }

/* ---------- DONATE TEASER ---------- */
.donate-teaser { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; background: linear-gradient(135deg, var(--green) 0%, var(--green-700) 70%); border-radius: var(--r-xl); padding: 56px; }
.donate-teaser-copy, .donate-teaser-widget { position: relative; z-index: 1; min-width: 0; }

/* ---------- DONATE WIDGET ---------- */
.donate-widget { width: 100%; box-sizing: border-box; background: #fff; border-radius: var(--r-lg); padding: 26px; box-shadow: var(--sh-lg); display: flex; flex-direction: column; gap: 16px; }
.dw-modes { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; background: var(--cream-2); padding: 6px; border-radius: var(--r-pill); }
.dw-mode { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; border-radius: var(--r-pill); font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink-soft); transition: all .18s ease; }
.dw-mode.active { background: #fff; color: var(--green); box-shadow: var(--sh-sm); }
.dw-hint { display: flex; align-items: center; gap: 8px; background: var(--green-50); color: var(--green-800); border-radius: var(--r-md); padding: 12px 14px; font-size: 14px; font-weight: 600; }
.dw-hint svg { flex-shrink: 0; }
.dw-amounts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dw-amount { padding: 16px 8px; border-radius: var(--r-md); background: var(--cream); border: 2px solid var(--line); font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--ink); transition: all .15s ease; }
.dw-amount:hover { border-color: var(--orange); }
.dw-amount.active { background: var(--orange-50); border-color: var(--orange); color: var(--orange-700); }
.dw-amount-custom { font-size: 15px; }
.dw-custom { display: flex; align-items: center; gap: 8px; border: 2px solid var(--orange); border-radius: var(--r-md); padding: 4px 18px; }
.dw-custom input { flex: 1; border: none; outline: none; font-family: var(--font-display); font-weight: 700; font-size: 22px; padding: 12px 0; background: transparent; color: var(--ink); width: 100%; }
.dw-custom span { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--ink-soft); }
.dw-impact { display: flex; align-items: center; gap: 10px; background: var(--blue-50); border-radius: var(--r-md); padding: 12px 14px; font-size: 14px; color: var(--ink); }
.dw-impact-emoji { width: 26px; height: 26px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dw-fields { display: grid; gap: 12px; }
.dw-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.45; color: var(--ink-soft); }
.dw-check input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--green); flex-shrink: 0; }
.dw-check a { color: var(--green); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.dw-check.has-error span { color: #b94a48; }
.dw-status { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; border-radius: var(--r-md); font-size: 13px; line-height: 1.45; }
.dw-status svg { flex-shrink: 0; margin-top: 1px; }
.dw-status.is-success { background: var(--green-50); color: var(--green-800); }
.dw-status.is-info { background: var(--blue-50); color: var(--blue-700); }
.dw-status.is-error { background: #fff1ef; color: #b94a48; }
.dw-submit { background: var(--orange); margin-top: 0; }
.dw-submit:hover { background: var(--orange-600); }
.dw-pay { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--ink-faint); font-weight: 600; }
.dw-pay-cards { display: flex; gap: 6px; }
.dw-pay-cards span { background: var(--cream-2); padding: 3px 8px; border-radius: 6px; font-family: var(--font-display); font-weight: 800; font-size: 11px; color: var(--ink-soft); }
.dw-legal { font-size: 12px; color: var(--ink-faint); line-height: 1.4; }
.dw-legal a { color: var(--green); font-weight: 700; }

/* ---------- DONATE NOTICE ---------- */
.donate-notice { display: flex; align-items: flex-start; gap: 10px; padding: 14px 16px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md); font-size: 13px; line-height: 1.5; color: var(--ink-soft); }
.donate-notice svg { color: var(--green); flex-shrink: 0; margin-top: 1px; }
.donate-notice a { color: var(--green); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- TEAM TEASER ---------- */
.team-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.team-avatars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.team-avatar { aspect-ratio: 1; border-radius: 24px; display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 30px; box-shadow: var(--sh-sm); overflow: hidden; background: linear-gradient(135deg, var(--green-50), var(--blue-50)); }
.team-avatar.has-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- PARTNERS ---------- */
.partners-grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.partner-chip { background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: 14px 24px; font-family: var(--font-display); font-weight: 600; color: var(--ink-soft); font-size: 16px; transition: all .18s ease; }
.partner-chip:hover { color: var(--green); border-color: var(--green); transform: translateY(-2px); }

.partners-logo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.partner-logo { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; padding: 28px 22px 24px; }
a.partner-logo { cursor: pointer; }
.partner-logo-img { height: 90px; width: 100%; display: flex; align-items: center; justify-content: center; }
.partner-logo-img img { max-height: 90px; max-width: 100%; width: auto; object-fit: contain; transition: transform .2s ease; }
a.partner-logo:hover .partner-logo-img img { transform: scale(1.05); }
.partner-logo-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink-soft); line-height: 1.25; }
a.partner-logo:hover .partner-logo-name { color: var(--green); }
@media (max-width: 920px) { .partners-logo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .partners-logo-grid { grid-template-columns: 1fr; } }

/* ============================================================
   INNER PAGES
   ============================================================ */
.page-hero { position: relative; overflow: hidden; text-align: center; padding: 64px 0 56px; }
.page-hero-green { background: linear-gradient(180deg, var(--green-50), var(--paper)); }
.page-hero-blue { background: linear-gradient(180deg, var(--blue-50), var(--paper)); }
.page-hero-orange { background: linear-gradient(180deg, var(--orange-50), var(--paper)); }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .h-xl { max-width: 14ch; margin: 18px auto 0; }

/* ABOUT */
.about-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { padding: 32px 28px; }
.value-icon { width: 60px; height: 60px; border-radius: 18px; background: var(--green-50); color: var(--green); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.grant-band { display: flex; align-items: center; gap: 28px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 40px; flex-wrap: wrap; }
.grant-band-mark { width: 64px; height: 64px; border-radius: 20px; background: var(--orange-50); color: var(--orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.grant-band-text { flex: 1; min-width: 240px; }

/* MENTORSHIP */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 26px; position: relative; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--blue); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 22px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.step-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.step-text { color: var(--ink-soft); font-size: 15px; margin-top: 8px; }
.reqs-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.reqs-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.req-item { display: flex; align-items: center; gap: 12px; background: var(--cream); border-radius: var(--r-md); padding: 16px 18px; font-weight: 600; font-size: 15px; }
.req-check { width: 28px; height: 28px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mentor-help-band, .join-band, .biz-cta { border-radius: var(--r-xl); }
.mentor-help-band { display: flex; align-items: center; justify-content: space-between; gap: 28px; background: linear-gradient(135deg, var(--blue-600), var(--blue-700)); padding: 40px 48px; flex-wrap: wrap; }
.mentor-doc-band { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; padding: 34px 38px; border: 1px solid var(--line); border-radius: var(--r-xl); background: linear-gradient(135deg, #fff 0%, var(--blue-50) 100%); box-shadow: var(--sh-md); }
.mentor-doc-icon { width: 68px; height: 68px; border-radius: 22px; background: #fff; color: var(--blue-700); display: flex; align-items: center; justify-content: center; box-shadow: var(--sh-sm); }
.mentor-doc-copy { min-width: 0; }
.mentor-doc-copy .eyebrow { margin-bottom: 8px; }
.mentor-doc-copy p { color: var(--ink-soft); margin-top: 8px; max-width: 680px; }

/* BUSINESS */
.biz-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.biz-card { padding: 32px 30px; }
.biz-icon { width: 60px; height: 60px; border-radius: 18px; background: var(--orange-50); color: var(--orange-600); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.biz-cta { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 40px; background: linear-gradient(135deg, var(--green), var(--green-700)); padding: 48px 52px; border-radius: var(--r-xl); }
.biz-cta-blue { background: linear-gradient(135deg, rgba(71,185,230,0.75), rgba(26,140,191,0.75)); }
.biz-cta-photo { flex: 0 0 auto; width: 360px; display: flex; align-items: flex-start; align-self: stretch; background: none; padding-top: 24px; }
.biz-cta-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.biz-cta-content { flex: 1; position: relative; z-index: 1; min-width: 0; }
.biz-cta-actions { flex: 0 0 auto; position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { text-align: center; padding: 36px 24px 32px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; min-height: 284px; }
.team-card-avatar { width: 144px; height: 144px; flex: 0 0 144px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 34px; margin-bottom: 18px; overflow: hidden; background: var(--cream-2); border: 8px solid #fff; box-shadow: var(--sh-md); }
.team-card-avatar.has-photo img { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: 50% 24%; display: block; border-radius: 50%; }
/* tone backgrounds for team cards (match news-thumb pattern) */
.team-card-avatar.tone-orange { background: linear-gradient(140deg, var(--orange-50), var(--orange-100)); }
.team-card-avatar.tone-blue { background: linear-gradient(140deg, var(--blue-50), var(--blue-100)); }
.team-card-avatar.tone-green { background: linear-gradient(140deg, var(--green-50), var(--green-100)); }

.team-card-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; min-height: 45px; display: flex; align-items: flex-end; justify-content: center; }
.team-card-role { color: var(--ink-soft); font-size: 15px; margin-top: 4px; min-height: 10px; }
.team-card-phone { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-weight: 700; font-size: 14px; margin-top: auto; padding-bottom: 4px; }
/* Starova white bg under transparent photo */

.join-band { display: flex; align-items: center; justify-content: space-between; gap: 24px; background: var(--cream); border: 1px solid var(--line); padding: 34px 40px; flex-wrap: wrap; }

/* DONATE PAGE */
.donate-layout { display: grid; grid-template-columns: 1.4fr .9fr; gap: 44px; align-items: start; }
.donate-ways { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 40px; }
.donate-way { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; }
.donate-way-icon { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.donate-way-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.donate-way-text { color: var(--ink-soft); font-size: 15px; margin-top: 6px; }
.donate-impact-band { background: var(--cream); border-radius: var(--r-lg); padding: 36px; margin-bottom: 40px; }
.donate-impact-rows { display: flex; flex-direction: row; gap: 20px; margin-top: 22px; }
.donate-impact-row { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; flex: 1; }
.donate-impact-ic { width: 46px; height: 46px; border-radius: 14px; background: #fff; color: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--sh-sm); }
.donate-impact-row b { font-family: var(--font-display); font-size: 17px; display: block; }
.donate-impact-row > div:last-child { display: flex; flex-direction: column; gap: 3px; align-items: center; }
.donate-impact-row span { color: var(--ink-soft); font-size: 15px; display: block; }
.donate-aside-sticky { position: sticky; top: 90px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: border-color .2s ease; }
.faq-item.open { border-color: var(--green); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; text-align: left; padding: 20px 22px; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink); }
.faq-toggle { width: 32px; height: 32px; border-radius: 50%; background: var(--cream-2); color: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.faq-a { padding: 0 22px 22px; color: var(--ink-soft); margin: 0; }

/* CONTACTS */
.contacts-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-card { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px; transition: all .18s ease; }
a.contact-card:hover { border-color: var(--green); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.contact-card-ic { width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card span { font-size: 13px; color: var(--ink-faint); display: block; }
.contact-card b { font-family: var(--font-display); font-size: 16px; }
.requisites { margin-top: 18px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md); padding: 6px 22px; }
.requisites summary { display: flex; align-items: center; justify-content: space-between; cursor: pointer; padding: 16px 0; font-family: var(--font-display); font-weight: 700; font-size: 17px; list-style: none; }
.requisites summary::-webkit-details-marker { display: none; }
.requisites[open] summary svg { transform: rotate(90deg); }
.requisites summary svg { transition: transform .2s ease; color: var(--green); }
.requisites table { width: 100%; border-collapse: collapse; margin-bottom: 16px; }
.requisites td { padding: 10px 0; font-size: 14px; vertical-align: top; border-top: 1px solid var(--line); }
.requisites td:first-child { color: var(--ink-faint); width: 42%; padding-right: 16px; }
.requisites td:last-child { font-weight: 600; }

.contact-form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px; box-shadow: var(--sh-sm); }
.contact-form { display: flex; flex-direction: column; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; font-weight: 700; font-size: 15px; margin-bottom: 16px; }
.contact-form input, .contact-form textarea { font-family: var(--font-body); font-size: 16px; padding: 14px 16px; border: 2px solid var(--line); border-radius: var(--r-md); outline: none; transition: border-color .15s ease; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--green); }
.contact-sent { text-align: center; padding: 30px 10px; }
.contact-sent-ic { width: 80px; height: 80px; border-radius: 50%; background: var(--green-50); color: var(--green); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.contact-sent-card {
  min-height: 360px;
  display: grid;
  place-items: center;
  align-content: center;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; z-index: 300;
  left: 20px; right: 20px; bottom: 20px;
  margin: 0 auto; max-width: 920px;
  display: flex; align-items: center; gap: 18px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  padding: 18px 22px;
  transform: translateY(24px); opacity: 0;
  animation: cookieIn .45s cubic-bezier(.22,.61,.36,1) forwards;
}
@keyframes cookieIn { to { transform: none; opacity: 1; } }
.cookie-ic {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px;
  background: var(--green-50); color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.cookie-text { flex: 1; font-size: 15px; line-height: 1.5; color: var(--ink-soft); }
.cookie-text a { color: var(--green); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner .btn { flex-shrink: 0; }
@media (max-width: 640px) {
  .cookie-banner { flex-wrap: wrap; gap: 14px; padding: 18px; left: 12px; right: 12px; bottom: 12px; }
  .cookie-ic { display: none; }
  .cookie-banner .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner { animation: none; transform: none; opacity: 1; }
}

/* ============================================================
   FLOATING MENTOR CTA
   ============================================================ */
.mentor-float-cta {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 880;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 236px;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  background: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 18px 38px rgba(24,145,76,.28), 0 0 0 8px rgba(255,255,255,.72);
  animation: mentorFloatIn .32s ease;
}
.mentor-float-cta:hover { background: var(--green-700); }
@keyframes mentorFloatIn {
  from { opacity: 0; transform: translate(-50%, 18px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
@media (max-width: 560px) {
  .mentor-float-cta {
    bottom: 14px;
    width: calc(100vw - 40px);
    min-width: 0;
    padding: 15px 20px;
    font-size: 17px;
  }
}

/* ============================================================
   PROSE / POLICY PAGE
   ============================================================ */
.prose { font-size: 17px; line-height: 1.7; color: var(--ink-soft); }
.prose h2 { font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 28px); color: var(--ink); margin: 36px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin: 0 0 16px; }
.prose b { color: var(--ink); font-weight: 800; }
.prose a { color: var(--green); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.prose-list { margin: 0 0 16px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.prose-list li { position: relative; padding-left: 30px; }
.prose-list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 16px; height: 3px; border-radius: 999px; background: var(--blue); }

.policy-docs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 44px; }
.policy-doc { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px 22px; transition: all .18s ease; }
.policy-doc:hover { border-color: var(--green); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.policy-doc-ic { width: 46px; height: 46px; border-radius: 14px; background: var(--green-50); color: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.policy-doc > div { flex: 1; }
.policy-doc b { font-family: var(--font-display); font-size: 16px; display: block; color: var(--ink); }
.policy-doc span { font-size: 13px; color: var(--ink-faint); display: block; margin-top: 2px; }
.policy-doc > svg { color: var(--green); flex-shrink: 0; }
@media (max-width: 600px) { .policy-docs { grid-template-columns: 1fr; } }

/* ---------- ANNUAL REPORTS ---------- */
.reports-list { display: flex; flex-direction: column; gap: 14px; }
.report-card { display: flex; align-items: center; gap: 24px; padding: 22px 26px; text-align: left; }
.report-card-year { flex-shrink: 0; width: 88px; display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--blue-700); }
.report-card-year svg { color: var(--blue); }
.report-card-year b { font-family: var(--font-display); font-weight: 800; font-size: 26px; line-height: 1; color: var(--ink); }
.report-card-body { flex: 1; min-width: 0; border-left: 1px solid var(--line); padding-left: 24px; }
.report-card-title { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--ink); }
.report-card-note { color: var(--ink-soft); font-size: 15px; margin-top: 4px; }
.report-card-dl { flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: var(--r-pill); background: var(--blue-50); color: var(--blue-700); font-family: var(--font-display); font-weight: 700; font-size: 15px; transition: all .18s ease; }
.report-card:hover .report-card-dl { background: var(--blue); color: #fff; }
.report-card-dl.is-orange { background: var(--orange-50); color: var(--orange); }
.report-card-dl.is-orange svg { color: var(--orange); }
.report-card:hover .report-card-dl.is-orange { background: var(--orange); color: #fff; }
.reports-foot { display: flex; align-items: flex-start; gap: 12px; margin-top: 32px; padding: 20px 24px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md); color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
.reports-foot svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.reports-foot a { color: var(--green); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 560px) {
  .report-card { flex-wrap: wrap; gap: 14px; }
  .report-card-year { flex-direction: row; width: auto; }
  .report-card-body { border-left: none; padding-left: 0; flex-basis: 100%; }
}

/* ---------- STATUTORY DOCS ---------- */
.docs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.docs-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; padding: 22px 24px; min-height: 128px; text-align: left; }
.docs-card-icon { width: 54px; height: 54px; border-radius: 18px; display: flex; align-items: center; justify-content: center; background: var(--green-50); color: var(--green); flex-shrink: 0; }
.docs-card-blue .docs-card-icon { background: var(--blue-50); color: var(--blue-700); }
.docs-card-orange .docs-card-icon { background: var(--orange-50); color: var(--orange); }
.docs-card-body { min-width: 0; }
.docs-card-body h2 { font-family: var(--font-display); font-size: 22px; line-height: 1.12; color: var(--ink); }
.docs-card-body p { margin-top: 6px; color: var(--ink-soft); font-size: 15px; line-height: 1.35; }
.docs-card-action { display: inline-flex; align-items: center; gap: 8px; padding: 11px 16px; border-radius: var(--r-pill); background: var(--green-50); color: var(--green); font-family: var(--font-display); font-weight: 700; font-size: 15px; transition: all .18s ease; }
.docs-card-blue .docs-card-action { background: var(--blue-50); color: var(--blue-700); }
.docs-card-orange .docs-card-action { background: var(--orange-50); color: var(--orange); }
.docs-card:hover .docs-card-action { background: var(--green); color: #fff; }
.docs-card-blue:hover .docs-card-action { background: var(--blue); color: #fff; }
.docs-card-orange:hover .docs-card-action { background: var(--orange); color: #fff; }
.docs-foot { max-width: 760px; margin-left: auto; margin-right: auto; }
@media (max-width: 860px) {
  .docs-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .docs-card { grid-template-columns: auto 1fr; gap: 14px; padding: 20px; }
  .docs-card-action { grid-column: 1 / -1; justify-content: center; width: 100%; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .donate-impact-rows { flex-direction: column; }
  .donate-impact-row { flex-direction: row; align-items: flex-start; text-align: left; gap: 16px; }
  .donate-impact-row > div:last-child { align-items: flex-start; }
  .mentor-grid, .impact-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .news-grid, .values-grid, .team-grid, .donate-ways { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .stat-strip-item:nth-child(2) { border-right: none; }
  .donate-layout { grid-template-columns: 1fr; }
  .donate-aside-sticky { position: static; }
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { min-height: 380px; order: -1; }
  .about-teaser, .about-split, .story, .team-teaser, .reqs-layout, .impact-head, .donate-teaser, .contacts-layout { grid-template-columns: 1fr; gap: 32px; }
  .donate-teaser { padding: 40px 28px; }
  .biz-grid { grid-template-columns: 1fr; }
  .story-photo-wrap { order: 1; }
  .story-quote { order: 2; }
  image-slot#about-main { aspect-ratio: 1 / 1; height: auto !important; }
  .mentor-doc-band { grid-template-columns: 1fr; gap: 18px; padding: 28px 24px; }
  .mentor-doc-band .btn { width: 100%; }
}
@media (max-width: 560px) {
  .mentor-grid, .impact-grid, .steps, .news-grid, .values-grid, .team-grid, .donate-ways, .reqs-list, .contact-cards, .team-avatars { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-strip-item { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 20px; }
  .stat-strip-item:last-child { border-bottom: none; }
  .donate-teaser { padding: 32px 16px; gap: 28px; }
  .donate-widget { padding: 20px; }
  .dw-modes { gap: 6px; padding: 5px; }
  .dw-mode { gap: 6px; padding: 11px 8px; font-size: 14px; }
  .dw-hint { padding: 12px; }
  .dw-amounts { grid-template-columns: repeat(2, 1fr); }
  .dw-amount { padding: 14px 6px; font-size: 16px; }
  .dw-amount-custom { font-size: 14px; }
  .float-card { display: none; }
  .grant-band, .mentor-help-band, .biz-cta, .biz-cta-blue, .join-band { padding: 28px 24px; }
  .about-photo-image { height: auto; max-height: none; object-fit: contain; background: var(--blue-50); }
}

/* ===== Application Modal ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: modalFadeIn .2s ease;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal {
  background: #fff; border-radius: 20px;
  width: 100%; max-width: 480px;
  padding: 36px 32px 28px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: modalSlideIn .25s ease;
  max-height: 90vh; overflow-y: auto;
}
@keyframes modalSlideIn {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; cursor: pointer;
  color: var(--ink-soft); padding: 6px;
  border-radius: 50%; line-height: 1;
  transition: all .15s ease;
}
.modal-close:hover { background: var(--cream); color: var(--ink); }
.modal h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 24px; margin-bottom: 6px;
}
.modal p { color: var(--ink-soft); font-size: 15px; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--ink); margin-bottom: 5px;
}
.form-label .required { color: var(--red, #e53e3e); margin-left: 2px; }
.form-input, .form-select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: 10px;
  font-size: 16px; font-family: inherit;
  background: #fff; transition: border-color .15s ease;
  box-sizing: border-box;
}
.form-input:focus, .form-select:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(71,185,230,0.15);
}
.form-input.error, .form-select.error { border-color: var(--red, #e53e3e); }
.form-error { color: var(--red, #e53e3e); font-size: 13px; margin-top: 4px; }
.form-submit {
  width: 100%; padding: 14px; margin-top: 6px;
  border: none; border-radius: 12px;
  background: var(--blue); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  cursor: pointer; transition: all .18s ease;
}
.form-submit:hover { background: var(--blue-600); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.modal-success {
  text-align: center; padding: 30px 0 10px;
  display: grid;
  justify-items: center;
  gap: 12px;
}
.modal-success h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.modal-success p { color: var(--ink-soft); font-size: 15px; max-width: 360px; }
.success-badge {
  width: 86px;
  height: 86px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--green-50), var(--blue-50));
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-sm);
}

/* ===== 404 ===== */
.not-found-page {
  min-height: calc(100vh - 92px);
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 88px 0 104px;
  background:
    radial-gradient(circle at 12% 78%, rgba(71, 185, 230, .14), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.not-found-blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(.2px);
  opacity: .82;
  pointer-events: none;
}

.not-found-blob-green {
  width: 280px;
  height: 280px;
  right: 8%;
  top: 80px;
  background: var(--green-100);
}

.not-found-blob-blue {
  width: 180px;
  height: 180px;
  left: 9%;
  bottom: 70px;
  background: var(--blue-100);
}

.not-found-inner {
  position: relative;
  z-index: 1;
}

.not-found-card {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.not-found-code {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(70px, 16vw, 150px);
  line-height: .78;
  color: var(--blue-700);
  text-shadow: 0 12px 0 rgba(71, 185, 230, .12);
}

.not-found-logo {
  width: min(220px, 70vw);
  height: auto;
  margin: 4px 0 8px;
}

.not-found-card .lead {
  max-width: 620px;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

.not-found-link {
  margin-top: 2px;
  color: var(--green-700);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 640px) {
  .not-found-page {
    min-height: calc(100vh - 78px);
    padding: 72px 0 86px;
  }

  .not-found-actions {
    width: 100%;
  }

  .not-found-actions .btn {
    width: 100%;
  }
}
