body { font-family: var(--font-base); }


/* --- Compact layout language (prototype) --- */
.al-page {
  color: #21324d;
  background: #fff;
}

.al-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.al-utility-wrap {
  padding-top: 10px;
  padding-bottom: 0;
}

.al-utility-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.al-utility-nav a {
  color: #314c79;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.al-header-row {
  padding-top: 12px;
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.al-logo {
  height: 52px;
  width: auto;
}

.al-top-nav {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.al-top-nav a {
  color: #314c79;
  font-weight: 600;
}

.al-top-nav__search {
  margin-left: 6px;
}

.al-search-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid #d9e1ef;
  border-radius: 50%;
  line-height: 1;
  text-decoration: none;
}

.al-hero {
  min-height: clamp(420px, 58vh, 700px);
  display: grid;
  align-items: end;
  color: #fff;
  position: relative;
  background-size: cover;
  background-position: center;
}

.al-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.42));
}

/* Static deployment: disable WP section preloaders that can stay stuck/spinner-only */
.mk-section-preloader,
.mk-page-section-loader {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.al-hero--home { background-image: url('/wp-content/uploads/2017/07/homepage-image-load.png'); }
.al-hero__content {
  position: relative;
  z-index: 1;
  padding: 72px 0 56px;
  text-align: right;
}

.al-hero--left .al-hero__content { text-align: left; }

.al-title {
  margin: 0;
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  color: #fff !important;
}

.al-subtitle {
  margin: .6rem 0 0;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 700;
  font-size: clamp(1rem, 2.1vw, 1.65rem);
  color: #fff !important;
}

.al-divider {
  width: 92px;
  height: 6px;
  border: 0;
  margin: 1.2rem 0 0 auto;
  background: #a7fd51;
}

.al-hero--left .al-divider { margin-left: 0; }

.al-section {
  padding: 72px 0;
}

.al-section--muted { background: #f8f9fb; }

.al-section__head {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #314c79;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.al-copy {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.8;
  color: #314c79;
}

.al-copy--mt-12 { margin-top: 12px; }
.al-copy--mb-18 { margin-bottom: 18px; }

.al-rule {
  border: 0;
  height: 1px;
  background: #d9e1ef;
  margin: 28px 0 0;
}

.al-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.al-split--reverse > :first-child { order: 2; }

.al-media {
  width: 100%;
  display: block;
  border-radius: 3px;
}

.al-btn-row {
  display: flex;
  justify-content: center;
  margin: 26px 0 8px;
}

.al-btn {
  display: inline-block;
  border: 2px solid #85ba37;
  color: #85ba37;
  padding: 12px 24px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  font-size: .84rem;
}

.al-btn:hover {
  background: #85ba37;
  color: #314c79;
}

.al-announcement {
  padding-top: 28px;
  padding-bottom: 0;
}

.al-announcement .al-btn-row {
  justify-content: flex-start;
  margin-top: 0;
}

.al-partners {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.al-partners img {
  width: 100%;
  max-height: 72px;
  object-fit: contain;
  padding: 8px;
  background: #fff;
  border: 1px solid #e7edf7;
}

.al-stats {
  background: linear-gradient(rgba(49,76,121,.92), rgba(49,76,121,.92)), url('/wp-content/uploads/2017/08/from-reactive-to-proactive.jpg') center/cover;
  color: #fff;
}

.al-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  text-align: center;
}

.al-stat__num {
  display: block;
  font-size: clamp(2rem, 4.4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
}

.al-stat__label {
  margin: .6rem 0 0;
  font-size: 1rem;
}

.al-cta-band {
  background: linear-gradient(rgba(133,186,63,.9), rgba(133,186,63,.9)), url('/wp-content/uploads/2017/08/request-info.jpg') center/cover;
  color: #fff;
}

.al-cta-band__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.al-cta-band h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.al-cta-band p {
  margin: .5rem 0 0;
}

.al-cta-link {
  color: #fff;
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 11px 20px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  font-size: .82rem;
}

.al-lite-footer {
  background: #314c79;
  color: #fff;
  padding: 46px 0;
}

.al-lite-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.al-lite-footer a { color: #fff; }
.al-lite-footer p { margin: 0 0 10px; }

.al-footer-nav {
  margin: 0;
  padding-left: 18px;
}

.al-footer-nav li { margin: 0 0 6px; }

@media (max-width: 900px) {
  .al-split,
  .al-stats__grid,
  .al-cta-band__inner,
  .al-lite-footer__grid,
  .al-partners {
    grid-template-columns: 1fr;
  }
  .al-utility-nav {
    justify-content: flex-start;
  }
  .al-hero__content { text-align: left; }
  .al-divider { margin-left: 0; }
}

.al-split--top { align-items: start; }
.al-narrow { max-width: 860px; margin: 0 auto; }
.al-center { text-align: center; }

.al-embed {
  position: relative;
  width: 100%;
  min-height: 740px;
  border: 1px solid #d9e1ef;
  background: #fff;
}

.al-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.al-donate-embed {
  text-align: center;
  min-height: 320px;
}
