.brand-logo-wrap {
  display:flex !important;
  align-items:center;
}
.brand-logo {
  display:block;
  width:auto;
  height:54px;
  max-width:min(360px, 58vw);
}
.footer-brand-lockup {
  display:grid;
  gap:14px;
}
.footer-brand-lockup .brand-logo {
  height:48px;
  max-width:300px;
}
.footer-contact-actions,
.donor-action-row {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}
.footer-contact-actions .btn,
.donor-action-row .btn {
  min-height:44px;
}
.direct-link {
  border-width:1px;
}
.quick-stats {
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
  margin-top:28px;
}
.quick-stat {
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:22px;
}
.quick-stat strong {
  display:block;
  font-size:clamp(24px, 3vw, 34px);
  color:var(--navy);
  font-family:Georgia, 'Times New Roman', serif;
  margin-bottom:8px;
}
.badge-row,
.trust-badges {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}
.badge-pill,
.trust-badge {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(15,39,65,0.12);
  background:#fff;
  color:var(--navy);
  font-weight:700;
  box-shadow:var(--shadow);
}
.reveal-on-scroll {
  opacity:0;
  transform:translateY(26px) scale(.985);
  transition:opacity .72s ease, transform .72s cubic-bezier(.2,.8,.2,1);
  will-change:opacity, transform;
}
.reveal-on-scroll.revealed {
  opacity:1;
  transform:none;
}
.donate-modal {
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(8,22,38,.72);
  z-index:120;
}
.donate-modal.open {
  display:flex;
}
.donate-modal-card {
  width:min(560px, 100%);
  background:#fff;
  border-radius:24px;
  box-shadow:0 30px 80px rgba(8,22,38,.28);
  overflow:hidden;
}
.donate-modal-head {
  background:linear-gradient(135deg, var(--navy), #14375b);
  color:#fff;
  padding:28px 28px 18px;
}
.donate-modal-body {
  padding:28px;
}
.donate-modal-close {
  position:absolute;
  right:16px;
  top:16px;
  width:42px;
  height:42px;
  border:0;
  border-radius:999px;
  cursor:pointer;
  background:rgba(255,255,255,.14);
  color:#fff;
  font-size:22px;
}
.modal-form-grid {
  display:grid;
  gap:14px;
}
.modal-form-grid input,
.modal-form-grid select {
  width:100%;
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#faf8f5;
  font:inherit;
}
.modal-note {
  font-size:14px;
  color:var(--muted);
  margin-top:12px;
}
.donor-sticky {
  position:sticky;
  top:92px;
  z-index:20;
  margin-top:-48px;
}
.donor-sticky .card {
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(12px);
}
.support-chip-grid {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  margin-top:24px;
}
.support-chip {
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:22px;
  box-shadow:var(--shadow);
}
.support-chip h3 {
  color:var(--navy);
}
footer .footer-grid > div:last-child .btn-row {
  gap:10px;
}
body.modal-open {
  overflow:hidden;
}
@media (max-width: 960px) {
  .quick-stats,
  .support-chip-grid { grid-template-columns:1fr 1fr; }
  .donor-sticky { top:74px; }
}
@media (max-width: 720px) {
  .brand-logo { height:46px; }
  .quick-stats,
  .support-chip-grid { grid-template-columns:1fr; }
  .donate-modal { padding:16px; }
  .donate-modal-body,
  .donate-modal-head { padding:22px; }
}
