/* MORIAH Cooperative — shared brand styles */
:root {
  --mt: #0a6b5c;
  --mt-mid: #1d8a74;
  --mt-light: #e0f2ee;
  --mt-border: #9fe1cb;
  --mo: #e07020;
  --mo-light: #fef3e8;
  --mo-border: #f5c4b3;
  --mtext: #1a2e2a;
  --msub: #4a6660;
  --mborder: #d0e8e2;
  --mcard: #f7fbfa;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--mtext);
  background: #fff;
  line-height: 1.6;
}

a { color: inherit; }

img { max-width: 100%; }

/* ── NAV ── */
.m-nav {
  background: var(--mt);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.m-nav__brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.m-nav__mark {
  width: 32px;
  height: 32px;
  background: var(--mo);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

.m-nav__name {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.m-nav__links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.m-nav__links a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: 13px;
  padding: 0 0.9rem;
  line-height: 60px;
  display: block;
  transition: color .15s;
}

.m-nav__links a:hover,
.m-nav__links a.active { color: #fff; }

.m-nav__links a.active {
  border-bottom: 2px solid var(--mo);
}

.m-nav__donate {
  background: var(--mo);
  color: #fff !important;
  padding: 7px 15px !important;
  line-height: normal !important;
  border-radius: 6px;
  font-weight: 500;
  margin-left: 0.5rem;
}

.m-nav__donate:hover { background: #c8601a !important; }

/* ── ANNOUNCEMENT BANNER ── */
.m-banner {
  background: var(--mo);
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.m-banner p { color: #fff; font-size: 13px; }

.m-banner__cta {
  background: #fff;
  color: var(--mo);
  padding: 4px 13px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── HERO ── */
.m-hero {
  background: var(--mt);
  padding: 4rem 1.5rem 3.5rem;
  text-align: center;
}

.m-hero__tag {
  display: inline-block;
  background: rgba(224,112,32,.22);
  color: #ffd090;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 11px;
  border-radius: 20px;
  margin-bottom: 1rem;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.m-hero h1 {
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 500;
  line-height: 1.22;
  max-width: 560px;
  margin: 0 auto 1rem;
}

.m-hero p {
  color: rgba(255,255,255,.78);
  font-size: .95rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 1.75rem;
}

.m-hero__btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--mo);
  color: #fff;
  padding: 11px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: background .15s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { background: #c8601a; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.45);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: border-color .15s;
}

.btn-outline:hover { border-color: rgba(255,255,255,.8); }

.btn-teal {
  display: inline-block;
  background: var(--mt);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: background .15s;
  border: none;
  cursor: pointer;
}

.btn-teal:hover { background: #085041; }

/* ── IMPACT STRIP ── */
.m-impact {
  background: var(--mo-light);
  border-top: 2px solid var(--mo);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.m-impact__stat { text-align: center; }

.m-impact__num {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--mo);
  display: block;
}

.m-impact__label {
  font-size: 11px;
  color: var(--msub);
  margin-top: 2px;
  display: block;
}

/* ── SECTION LABELS ── */
.s-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--mt);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .35rem;
  display: block;
}

.s-title {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--mtext);
  margin-bottom: .4rem;
}

.s-sub {
  font-size: .9rem;
  color: var(--msub);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 560px;
}

/* ── SECTION WRAPPERS ── */
.m-section {
  padding: 3rem 1.5rem;
}

.m-section--alt { background: var(--mcard); }
.m-section--teal { background: var(--mt-light); }

.m-section__inner {
  max-width: 900px;
  margin: 0 auto;
}

/* ── CARDS ── */
.m-card {
  background: #fff;
  border: 1px solid var(--mborder);
  border-radius: 12px;
  padding: 1.25rem;
}

.m-card--featured {
  border-color: var(--mt);
  border-width: 2px;
}

.m-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: .9rem;
}

.m-card__icon--teal { background: var(--mt-light); color: var(--mt); }
.m-card__icon--orange { background: var(--mo-light); color: var(--mo); }
.m-card__icon--blue { background: #eef4ff; color: #3366cc; }

.m-card h3 { font-size: 14px; font-weight: 500; margin-bottom: .35rem; }
.m-card p { font-size: 12px; color: var(--msub); line-height: 1.55; margin-bottom: .8rem; }
.m-card a { font-size: 12px; color: var(--mt); font-weight: 500; text-decoration: none; }
.m-card a:hover { text-decoration: underline; }

/* ── GRID ── */
.m-grid { display: grid; gap: 14px; }
.m-grid--3 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.m-grid--4 { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.m-grid--2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

/* ── PROGRESS BAR ── */
.m-progress__wrap {
  background: var(--mborder);
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
  margin: .75rem 0 .4rem;
}

.m-progress__bar {
  background: var(--mo);
  height: 100%;
  border-radius: 999px;
  transition: width .6s ease;
}

.m-progress__meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--msub);
}

.m-progress__meta strong { color: var(--mtext); font-weight: 500; }

/* ── TRAIT PILLS ── */
.m-traits { display: flex; flex-wrap: wrap; gap: 7px; margin: .9rem 0 1.25rem; }

.m-trait {
  background: var(--mt-light);
  color: #085041;
  font-size: 12px;
  padding: 3px 11px;
  border-radius: 20px;
  font-weight: 500;
}

/* ── DIVIDER ── */
.m-divider {
  border: none;
  border-top: 1px solid var(--mborder);
  margin: 2.5rem 0;
}

/* ── FOOTER ── */
.m-footer {
  background: var(--mt);
  color: rgba(255,255,255,.7);
  padding: 2rem 1.5rem 1.25rem;
}

.m-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.m-footer h4 {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  margin-bottom: .6rem;
}

.m-footer ul { list-style: none; }

.m-footer ul li a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: 12px;
  line-height: 1.9;
  display: block;
}

.m-footer ul li a:hover { color: #fff; }

.m-footer p { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.8; }

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

.m-footer__bottom p { font-size: 11px; color: rgba(255,255,255,.4); }

.m-footer__donate-link {
  background: var(--mo);
  color: #fff;
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

.m-footer__donate-link:hover { background: #c8601a; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .m-nav__name { display: none; }
  .m-nav__links a { padding: 0 .5rem; font-size: 12px; }
  .m-footer__grid { grid-template-columns: 1fr; }
  .m-hero { padding: 2.5rem 1rem 2rem; }
  .m-section { padding: 2rem 1rem; }
}
