:root {
  --brand-blue: #184665;
  --text: #393939;
  --muted: #6f6f6f;
  --bg-soft: #f7f7f7;
  --border: #e7e7e7;
  --content-max: 860px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: calc(100% - 40px);
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 40px), var(--content-max));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--brand-blue);
  color: #fff;
}

.header-inner {
  min-height: 73px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  position: relative;
}

.site-logo {
  position: relative;
  flex: 0 0 auto;
  padding-right: 38px;
  margin-right: 30px;
  align-self: stretch;
  display: flex;
  align-items: center;
  z-index: 220;
}

.site-logo::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.28);
}

.site-logo img {
  width: 165px;
  height: auto;
}

.header-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.site-nav a,
.connect-link {
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-nav a[aria-current="page"] {
  font-weight: 500;
}

.connect-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

.mobile-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.header-right .connect-link img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.footer-connect img {
  filter: grayscale(1) brightness(0.5);
  opacity: 1;
}

.section {
  padding: 72px 0 96px;
}

.page-title {
  margin: 0 0 72px;
  color: var(--brand-blue);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.giving-method + .giving-method {
  margin-top: 72px;
}

.giving-method h2 {
  margin: 0 0 18px;
  font-size: clamp(1.9rem, 4.2vw, 2.7rem);
  line-height: 1.05;
  font-weight: 700;
}

.giving-method p,
.reference-intro,
.final-note,
.reference-card li {
  font-size: 1.05rem;
  font-weight: 400;
}

.giving-method p {
  margin: 0 0 16px;
  color: var(--text);
}

.giving-figure {
  margin: 28px 0 0;
}

.reference-intro {
  margin: 48px 0 30px;
}

.reference-intro a {
  color: #c95353;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.reference-card {
  padding: 0;
}

.reference-card h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.reference-card ul {
  margin: 0;
  padding-left: 18px;
}

.reference-card li + li {
  margin-top: 8px;
}

.final-note {
  margin: 42px 0 0;
}

.site-footer {
  background: #ffffff;
  border-top: 0;
}

.footer-inner {
  min-height: 83px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  text-decoration: none;
}

.footer-connect {
  color: var(--muted);
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 220;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1080px) {
  .header-inner {
    min-height: 73px;
    padding: 0 10px;
    flex-wrap: nowrap;
  }

  .site-logo {
  padding-right: 38px;
  margin-right: 30px;
    z-index: 220;
  }

	@media (max-width: 1080px) {
  body.nav-open .site-logo::after {
    display: none;
  }
}
	
  .site-logo img {
    width: 165px;
  }

  .header-right {
    justify-content: flex-end;
    position: static;
  }

  .mobile-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
    z-index: 220;
  }

  .mobile-actions .connect-link span {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
  }

  .site-nav.is-open {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--brand-blue);
    z-index: 210;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 56px;
    padding: 120px 24px 60px;
    flex-wrap: nowrap;
  }

  .site-nav.is-open a {
    font-size: clamp(22px, 4vw, 40px);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.1;
    text-align: center;
  }
}

@media (min-width: 1081px) {
  .mobile-actions {
    display: flex;
    align-items: center;
    gap: 22px;
  }

  .nav-toggle {
    display: none;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 48px 0 72px;
  }

  .page-title {
    margin-bottom: 56px;
  }

  .giving-method + .giving-method {
    margin-top: 56px;
  }

  .reference-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 24px;
  }

  .header-inner {
    min-height: 73px;
    padding: 0 10px;
  }

  .site-logo {
   padding-right: 38px;
  margin-right: 30px;
  }

  .site-logo img {
    width: 165px;
  }

  .mobile-actions {
    gap: 22px;
  }

  .site-nav.is-open {
    gap: 56px;
    padding: 110px 20px 50px;
  }

  .site-nav.is-open a {
    font-size: clamp(18px, 8vw, 30px);
  }
}