/* MPJ Site Identity v0.1.0 */
.mpj-site-identity {
  width: 100%;
  background: #F7F4EC;
  border-bottom: 1px solid rgba(42,42,42,.08);
  color: #2A2A2A;
  position: relative;
  z-index: 20;
}
.mpj-site-identity__inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 88px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.mpj-site-identity__brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  color: inherit;
  text-decoration: none;
}
.mpj-site-identity__brand:hover,
.mpj-site-identity__brand:focus { color: inherit; text-decoration: none; }
.mpj-site-identity__logo {
  display: block;
  width: auto;
  height: 66px;
  max-width: 132px;
  object-fit: contain;
  border-radius: 8px;
}
.mpj-site-identity__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mpj-site-identity__name {
  font-family: "Playfair Display", Georgia, serif;
  color: #6B5E3C;
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 600;
  line-height: 1.08;
}
.mpj-site-identity__charity {
  font-family: "Montserrat", Arial, sans-serif;
  color: #2F5D50;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .2px;
}
.mpj-site-identity__campaign {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 20px;
  border-radius: 8px;
  background: #2F5D50;
  color: #fff !important;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background-color .2s ease;
}
.mpj-site-identity__campaign:hover,
.mpj-site-identity__campaign:focus { background: #264C42; color: #fff !important; text-decoration: none !important; }
.mpj-site-identity__campaign:focus-visible { outline: 3px solid rgba(156,74,58,.28); outline-offset: 3px; }
@media (max-width: 767px) {
  .mpj-site-identity__inner {
    width: min(100% - 28px, 1200px);
    min-height: 0;
    padding: 10px 0 12px;
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 10px 12px;
  }
  .mpj-site-identity__brand { gap: 10px; }
  .mpj-site-identity__logo { height: 50px; max-width: 90px; }
  .mpj-site-identity__name { font-size: 19px; }
  .mpj-site-identity__charity { font-size: 11px; line-height: 1.3; }
  .mpj-site-identity__campaign { min-height: 40px; padding: 9px 12px; font-size: 12px; }
}
@media (max-width: 520px) {
  .mpj-site-identity__inner { grid-template-columns: 1fr; }
  .mpj-site-identity__campaign { width: 100%; }
  .mpj-site-identity__logo { height: 52px; max-width: 96px; }
}
