:root {
  --green: #00543d;
  --green-dark: #004c38;
  --offwhite: #f8f8f5;
  --border: #d9ddd8;
  --text: #111111;
  --text-soft: #1a1a1a;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
footer[id],
div[id] {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

.hidden {
  display: none !important;
}

.container {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.section,
.hero-section {
  padding: 80px 0;
}

.section-bordered {
  border-bottom: 1px solid var(--border);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition:
    padding 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.site-header.scrolled {
  padding: 10px 0;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

main {
  padding-top: 96px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.logo-button img {
  height: clamp(64px, 8vw, 96px);
  width: auto;
  transition: transform 0.3s ease;
}

.logo-button:hover img {
  transform: scale(1.02);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.desktop-nav button,
.desktop-nav a,
.footer-links button,
.footer-links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color 0.2s ease;
}

.desktop-nav > button:not(.btn),
.desktop-nav > a:not(.btn) {
  padding: 6px 8px;
}

.nav-donate {
  margin-left: 6px;
  padding: 14px 24px;
}

.desktop-nav button:hover,
.desktop-nav a:hover,
.footer-links button:hover,
.footer-links a:hover {
  color: var(--green);
}

.nav-link-active {
  color: var(--green) !important;
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 16px;
}

.menu-indicator {
  padding: 4px;
}

.menu-indicator span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin-bottom: 6px;
}

.menu-indicator span:last-child {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary,
.btn-dark {
  color: var(--white);
  background: var(--green-dark);
}

.desktop-nav .btn-primary,
.desktop-nav .nav-donate,
.mobile-actions .btn-primary {
  color: var(--white);
}

.btn-primary:hover,
.btn-dark:hover {
  background: var(--green);
  box-shadow: 0 14px 30px rgba(0, 84, 61, 0.22);
}

.btn-outline {
  border: 1px solid var(--green-dark);
  color: var(--green-dark);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
}

.btn-small {
  padding: 12px 16px;
  font-size: 10px;
}

.btn-footer {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
}

.btn-footer:hover {
  color: var(--green-dark);
  background: var(--white);
  border-color: var(--white);
}

.btn-block {
  width: 100%;
}

.hero-section {
  padding-top: 140px;
  background: var(--offwhite);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 64px;
  align-items: center;
}

.hero-copy h1,
.about-copy h2,
.gift-copy h2,
.news-top h2,
.section-heading h2 {
  margin: 0;
  color: var(--green-dark);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(42px, 5.2vw, 60px);
  line-height: 1.08;
}

.hero-copy p,
.about-copy p,
.gift-copy p,
.feature-content p,
.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.hero-collage {
  position: relative;
  min-height: 650px;
}

.hero-frame {
  position: absolute;
  right: 0;
  bottom: 6%;
  width: 72%;
  height: 80%;
  background: var(--green-dark);
  box-shadow: var(--shadow);
}

.hero-frame-inset {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-portrait,
.hero-campus {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-portrait {
  right: 1.5%;
  top: 4%;
  width: 53.5%;
  height: 82%;
  z-index: 2;
}

.hero-campus {
  left: 3%;
  top: 20%;
  width: 39.5%;
  height: 46%;
  z-index: 1;
}

.hero-portrait img,
.hero-campus img,
.about-image img,
.feature-image img,
.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.hero-portrait:hover img,
.hero-campus:hover img,
.about-image-wrap:hover img,
.feature-card:hover img,
.news-card:hover img {
  transform: scale(1.04);
}

.hero-card {
  position: absolute;
  left: 8%;
  bottom: 28%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-crest {
  height: 66px;
  width: auto;
}

.hero-card-divider {
  width: 1px;
  height: 48px;
  background: #d4d4d4;
}

.hero-card-text span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-card-text small {
  display: block;
  margin-top: 6px;
  color: #444;
  font-size: 11px;
}

.two-column-grid,
.gift-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow-wide {
  letter-spacing: 0.3em;
}

.about-section {
  background: var(--offwhite);
}

.about-copy h2 {
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.08;
  margin-bottom: 20px;
}

.about-image-wrap {
  position: relative;
}

.image-outline {
  position: absolute;
  inset: -12px;
  border: 2px dashed rgba(0, 84, 61, 0.2);
  transition: inset 0.4s ease;
}

.about-image-wrap:hover .image-outline {
  inset: 0;
}

.about-image {
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.about-image img {
  height: 400px;
}

.pillars-section {
  background: var(--white);
}

.section-heading.centered {
  text-align: center;
  margin-bottom: 64px;
}

.section-heading h2 {
  font-size: clamp(28px, 3vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.heading-bar {
  width: 64px;
  height: 4px;
  margin: 16px auto 0;
  background: var(--green);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--border);
}

.pillar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  min-height: 100%;
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.3s ease;
}

.pillar-card:last-child {
  border-right: 0;
}

.pillar-card:hover {
  background: var(--offwhite);
}

.pillar-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  background: var(--offwhite);
  border-radius: 50%;
  color: var(--green);
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.pillar-card:hover .pillar-icon {
  background: var(--green);
  color: var(--white);
}

.pillar-icon svg,
.feature-badge svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-card h3,
.feature-content h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.pillar-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--text-soft);
}

.text-link {
  padding: 0;
  margin-top: auto;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
}

.text-link:hover {
  border-bottom-color: var(--green);
}

.gift-copy {
  align-self: start;
  position: sticky;
  top: 112px;
}

.gift-copy h2 {
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.08;
}

.gift-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-image {
  position: relative;
  height: 260px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.feature-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--green);
}

.feature-content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.feature-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-link {
  transform: translateX(6px);
}

.quote-band {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  color: var(--white);
  background: var(--green);
  border-bottom-color: var(--green-dark);
}

.quote-watermark {
  position: absolute;
  top: 50%;
  right: 10%;
  color: rgba(255, 255, 255, 0.1);
  transform: translateY(-50%);
}

.quote-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.quote-mark {
  font-size: 88px;
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.35);
}

.quote-copy p {
  margin: 0 0 18px;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.55;
  font-weight: 300;
}

.quote-copy span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.news-section {
  background: var(--offwhite);
}

.news-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.news-controls {
  display: flex;
  gap: 8px;
}

.news-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  font-size: 20px;
  color: var(--text-soft);
  background: transparent;
  transition: all 0.3s ease;
}

.news-controls button:hover {
  color: var(--green);
  background: var(--white);
  border-color: var(--green);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.news-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #111;
  box-shadow: var(--shadow);
}

.news-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95),
    rgba(0, 0, 0, 0.55),
    transparent
  );
}

.news-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.news-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 32px;
  color: var(--white);
}

.news-content .news-date {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.news-content-row {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.news-content h3 {
  flex: 1;
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.news-arrow {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: var(--green);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.news-card:hover .news-arrow {
  opacity: 1;
  transform: translateY(0);
}

.news-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.news-dot {
  width: 8px;
  height: 6px;
  background: var(--border);
  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.news-dot.active {
  width: 32px;
  background: var(--green);
}

.donation-section {
  padding: 56px 0;
  background: var(--offwhite);
}

.donation-container {
  max-width: 820px;
}

.donation-form-shell,
.thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.form-error {
  width: 100%;
  max-width: 640px;
  padding: 12px 14px;
  border: 1px solid #fecaca;
  color: #b91c1c;
  background: #fef2f2;
  font-size: 12px;
}

.fund-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 36px;
}

.radio-option {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-soft);
  cursor: pointer;
}

.radio-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-ui {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #9ca3af;
  border-radius: 50%;
  background: var(--white);
}

.radio-option input:checked + .radio-ui {
  border: 2px solid var(--green);
}

.radio-option input:checked + .radio-ui::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.amount-heading {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-soft);
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  gap: 10px;
}

.amount-btn {
  padding: 12px 8px;
  border: 1px solid #d1d5db;
  background: rgba(229, 233, 228, 0.6);
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

.amount-btn.active {
  border: 2px solid var(--green);
  background: #e5e9e4;
}

.custom-amount {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.custom-amount span {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 700;
}

.custom-amount input {
  width: 100%;
  padding: 10px 12px 10px 28px;
  border: 1px solid rgba(0, 84, 61, 0.5);
  background: var(--white);
  font-size: 12px;
}

.thank-you {
  max-width: 520px;
  padding: 24px 0;
  text-align: center;
}

.thank-you h3,
.contact-success h4 {
  margin: 0;
  font-size: 20px;
}

.thank-you p,
.contact-success p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-soft);
}

.thank-you-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--green);
  background: #e7f5ee;
  font-size: 24px;
  font-weight: 700;
}

.site-footer {
  padding: 80px 0 40px;
  color: var(--white);
  background: var(--green-dark);
  border-top: 1px solid var(--green);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(0, 84, 61, 0.65);
}

.footer-logo-card {
  display: inline-block;
  padding: 16px;
  background: var(--white);
}

.footer-logo-card img {
  height: 80px;
  width: auto;
}

.footer-brand p,
.footer-connect p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.footer-links h4,
.footer-connect h4 {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 14px;
}

.footer-links button {
  padding: 0;
  font-weight: 300;
  letter-spacing: normal;
  text-transform: none;
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a {
  font-weight: 300;
  letter-spacing: normal;
  text-transform: none;
  color: rgba(255, 255, 255, 0.78);
}

.subscribe-form {
  position: relative;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 52px 14px 16px;
  border: 1px solid var(--green);
  color: var(--white);
  background: rgba(0, 84, 61, 0.5);
  font-size: 11px;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.subscribe-form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.subscribe-success {
  margin-top: 10px;
  color: #a3e635;
  font-size: 10px;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--green);
  color: rgba(255, 255, 255, 0.95);
  font-size: 11px;
  font-weight: 700;
  text-transform: lowercase;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.social-links a:hover {
  color: var(--green-dark);
  background: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 40px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 32px;
}

.footer-meta span,
.footer-policy-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.footer-policy-links {
  display: flex;
  gap: 16px;
}

.footer-policy-links a {
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  max-width: 360px;
  padding: 16px 18px;
  border-left: 4px solid var(--green-dark);
  color: var(--text);
  background: var(--offwhite);
  box-shadow: var(--shadow);
  font-size: 12px;
  line-height: 1.6;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal-panel {
  width: min(100%, 720px);
  padding: 28px 32px;
  border-top: 4px solid var(--green-dark);
  color: var(--text);
  background: var(--white);
  box-shadow: var(--shadow);
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.modal-head h3 {
  margin: 0;
  font-size: 28px;
}

.modal-close {
  font-size: 32px;
  line-height: 1;
}

.contact-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0 0 16px;
  margin: 16px 0;
  border-bottom: 1px solid #f1f5f9;
  color: #444;
  font-size: 11px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label span {
  display: block;
  margin-bottom: 6px;
  color: #737373;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--offwhite);
}

.contact-success {
  padding: 48px 0 24px;
  text-align: center;
}

.editorial-page {
  padding: 28px 0 88px;
  background: var(--white);
}

.page-hero {
  margin-bottom: 88px;
}

.page-hero-dark {
  color: var(--white);
  background: var(--green-dark);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: center;
}

.page-hero-copy {
  padding: 88px 0;
}

.page-hero-copy .eyebrow.light,
.contact-banner-copy .eyebrow.light {
  color: rgba(255, 255, 255, 0.8);
}

.page-hero-copy h2,
.immersive-copy h2,
.contact-banner-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.page-hero-copy p,
.immersive-copy p {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.7;
}

.page-hero-media {
  min-height: 680px;
}

.page-hero-media img,
.roadmap-image-card img,
.story-card img,
.project-card img,
.feature-main img,
.feature-float img,
.ways-image-wrap img,
.contact-banner img,
.contact-map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-light {
  color: var(--green-dark);
  background: var(--white);
}

.btn-light:hover {
  background: var(--offwhite);
}

.page-section-content {
  padding-top: 8px;
}

.roadmap-grid,
.feature-split,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: center;
}

.roadmap-image-card {
  position: relative;
  border: 1px solid var(--green);
  box-shadow: var(--shadow);
}

.roadmap-image-card img {
  aspect-ratio: 4 / 5;
}

.year-card {
  position: absolute;
  right: -36px;
  bottom: -36px;
  max-width: 280px;
  padding: 22px;
  border: 1px solid var(--border);
  background: var(--offwhite);
  box-shadow: var(--shadow);
}

.year-card strong {
  display: block;
  color: var(--green-dark);
  font-size: 42px;
  font-weight: 800;
}

.year-card span,
.timeline-item h4,
.project-card span,
.metrics-row span,
.contact-detail-list span,
.ways-note h4 {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.year-card p,
.timeline-item p,
.story-card p,
.project-card p,
.giving-card p,
.banking-card p,
.page-contact-form-wrap p,
.contact-detail-list p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

.roadmap-copy h3,
.scholarship-copy h2,
.feature-copy h3,
.page-contact-form-wrap h3,
.contact-info-panel h3 {
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.12;
}

.timeline-list {
  display: grid;
  gap: 22px;
  margin: 28px 0 34px;
}

.timeline-item {
  padding-left: 18px;
  border-left: 2px solid var(--border);
}

.timeline-item.active {
  border-left-color: var(--green);
}

.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.story-grid,
.project-grid,
.giving-grid {
  margin-top: 56px;
}

.story-card,
.project-card,
.giving-card,
.banking-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-card img,
.project-card img {
  border: 1px solid var(--border);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.story-card img {
  aspect-ratio: 1 / 1;
}

.story-card.elevated {
  transform: translateY(40px);
}

.story-card h3,
.project-card h3,
.giving-card h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 24px;
}

.scholarships-layout,
.ways-grid {
  padding-top: 88px;
}

.scholarship-poster {
  display: flex;
  justify-content: flex-end;
}

.poster-frame {
  position: relative;
  width: min(100%, 520px);
  padding: 16px;
  border: 1px solid var(--green);
  background: var(--white);
  transform: rotate(2deg);
  box-shadow: var(--shadow);
}

.poster-frame img {
  aspect-ratio: 4 / 5;
}

.poster-quote {
  position: absolute;
  left: -30px;
  bottom: -30px;
  max-width: 260px;
  padding: 22px;
  color: var(--white);
  background: var(--green);
  transform: rotate(-2deg);
  box-shadow: var(--shadow);
}

.poster-quote p {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.65;
  font-style: italic;
}

.poster-quote span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.immersive-banner,
.contact-banner {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.immersive-banner > img,
.contact-banner > img {
  position: absolute;
  inset: 0;
}

.immersive-overlay,
.contact-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 76, 56, 0.35);
}

.immersive-copy,
.contact-banner-copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 620px;
}

.glass-card {
  max-width: 620px;
  padding: 34px;
  border-left: 4px solid var(--green);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.glass-card .eyebrow,
.glass-card h2,
.glass-card p {
  color: var(--green-dark);
}

.project-card {
  gap: 14px;
}

.project-card img {
  aspect-ratio: 4 / 3;
}

.feature-stack {
  position: relative;
  padding-right: 84px;
}

.feature-main {
  border: 1px solid var(--green);
  padding: 8px;
  background: var(--white);
}

.feature-main img {
  aspect-ratio: 4 / 5;
}

.feature-float {
  position: absolute;
  right: 0;
  bottom: -36px;
  width: 240px;
  border: 1px solid var(--green);
  padding: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-float img {
  aspect-ratio: 1 / 1;
}

.feature-copy p {
  margin: 0 0 24px;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: 24px;
  margin-bottom: 28px;
  border-top: 1px solid var(--border);
}

.metrics-row strong {
  display: block;
  color: var(--text);
  font-size: 28px;
}

.ways-page {
  background: var(--offwhite);
}

.ways-image-wrap {
  position: relative;
  border: 1px solid var(--green);
  overflow: hidden;
}

.ways-image-wrap img {
  aspect-ratio: 4 / 5;
}

.ways-note {
  position: absolute;
  left: -28px;
  bottom: 28px;
  max-width: 260px;
  padding: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.giving-card {
  align-items: center;
  padding: 34px 28px;
  text-align: center;
  border: 1px solid var(--border);
  background: var(--white);
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}

.giving-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.giving-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 28px;
  font-weight: 700;
}

.banking-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.banking-card {
  padding: 28px;
  color: var(--white);
  background: var(--green-dark);
}

.banking-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.banking-card p,
.banking-card li {
  color: rgba(255, 255, 255, 0.82);
}

.banking-card ul {
  padding-left: 18px;
  margin: 0;
  line-height: 1.8;
}

.contact-banner-copy {
  justify-content: center;
  text-align: center;
}

.contact-banner-copy h2 {
  color: var(--white);
}

.contact-layout {
  padding-top: 88px;
  align-items: start;
}

.page-contact-form-wrap {
  padding-right: 40px;
}

.page-contact-form {
  display: grid;
  gap: 16px;
}

.page-contact-form input,
.page-contact-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--border);
  background: var(--offwhite);
}

.contact-info-panel {
  padding-left: 40px;
  border-left: 1px solid var(--border);
}

.contact-detail-list {
  display: grid;
  gap: 28px;
}

.contact-map-card {
  position: relative;
  overflow: hidden;
  margin-top: 32px;
  border: 1px solid var(--border);
}

.contact-map-card img {
  aspect-ratio: 16 / 9;
  filter: grayscale(1);
  transition: filter 0.5s ease;
}

.contact-map-card:hover img {
  filter: grayscale(0);
}

.map-tag {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.capital-hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: #d8e4de;
}

.capital-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capital-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 73, 47, 0.36),
    rgba(0, 73, 47, 0.12)
  );
}

.capital-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 820px;
}

.capital-hero-card {
  max-width: 520px;
  padding: 30px 30px 34px;
  border-left: 4px solid var(--green);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.capital-hero-card h1 {
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.capital-hero-card p {
  margin: 0 0 28px;
  color: #3f4942;
  font-size: 17px;
  line-height: 1.72;
}

.capital-hero-btn {
  padding-inline: 28px;
}

.capital-projects-grid {
  padding: 58px 0 68px;
  background: #fff;
}

.capital-section-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.capital-heading-block {
  max-width: 620px;
}

.capital-heading-block h2 {
  margin: 0 0 14px;
  color: #111111;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.capital-heading-block p {
  margin: 0;
  color: #5b625d;
  font-size: 15px;
  line-height: 1.75;
}

.capital-arrow-controls {
  display: flex;
  gap: 8px;
}

.capital-arrow-controls button {
  width: 34px;
  height: 34px;
  border: 1px solid #bfc8c1;
  color: #4b554e;
  background: #fff;
  font-size: 18px;
}

.capital-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.capital-card-image {
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid #c8d0ca;
}

.capital-card-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.capital-card-copy {
  padding-left: 6px;
}

.capital-card-copy span {
  display: block;
  margin-bottom: 8px;
  color: #111111;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.capital-card-copy h3 {
  margin: 0 0 8px;
  color: #111111;
  font-size: 29px;
  line-height: 1.08;
}

.capital-card-copy p {
  margin: 0;
  color: #5b625d;
  font-size: 14px;
  line-height: 1.65;
}

.capital-feature-band {
  padding: 72px 0 48px;
  background: #f3f4f0;
}

.capital-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 54px;
  align-items: center;
}

.capital-feature-media {
  position: relative;
  padding-bottom: 30px;
}

.capital-feature-main {
  border: 1px solid #a9b5ad;
  padding: 4px;
  background: #fff;
}

.capital-feature-main img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.capital-feature-float {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 230px;
  border: 1px solid #a9b5ad;
  padding: 4px;
  background: #fff;
}

.capital-feature-float img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.capital-feature-copy {
  padding-right: 20px;
}

.capital-kicker {
  display: block;
  margin-bottom: 10px;
  color: #626564;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.capital-feature-copy h2 {
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.capital-feature-copy p {
  margin: 0 0 16px;
  color: #5b625d;
  font-size: 15px;
  line-height: 1.75;
}

.capital-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 26px 0 28px;
  padding-top: 18px;
  border-top: 1px solid #c8d0ca;
}

.capital-stats span {
  display: block;
  margin-bottom: 6px;
  color: #111111;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.capital-stats strong {
  font-size: 34px;
  font-weight: 600;
  color: #111111;
}

.capital-detail-btn {
  padding-inline: 26px;
}

.capital-quote-strip {
  padding: 62px 0 54px;
  color: #fff;
  background: var(--green-dark);
}

.capital-quote-inner {
  text-align: center;
}

.capital-quote-inner blockquote {
  max-width: 920px;
  margin: 0 auto 18px;
  font-size: clamp(28px, 3vw, 46px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
}

.capital-quote-inner p {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.capital-quote-bar {
  width: 132px;
  height: 10px;
  margin: 18px auto 0;
  background: rgba(255, 255, 255, 0.08);
}

.capital-cta-section {
  padding: 72px 0 82px;
  background: #fff;
}

.capital-cta-inner {
  max-width: 820px;
  text-align: center;
}

.capital-cta-icon {
  margin-bottom: 18px;
  color: #111111;
  font-size: 34px;
}

.capital-cta-inner h2 {
  margin: 0 0 12px;
  color: #111111;
  font-size: 42px;
  line-height: 1.15;
}

.capital-cta-inner p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: #5b625d;
  font-size: 15px;
  line-height: 1.75;
}

.capital-cta-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.capital-footer {
  padding-top: 74px;
}

.capital-footer-brand {
  margin: 0 0 16px;
  color: #fff;
  font-size: 32px;
  line-height: 0.95;
  text-transform: uppercase;
}

.capital-footer .footer-links h4,
.capital-footer .footer-connect h4 {
  font-size: 10px;
}

.capital-footer-btn {
  width: 100%;
  margin-top: 14px;
  text-align: center;
}

.contact2-hero {
  display: flex;
  align-items: center;
  min-height: 540px;
  text-align: center;
  color: #fff;
  background: #a7c0b6;
}

.contact2-hero-inner h1 {
  margin: 14px 0 0;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1.04;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
}

.contact2-main,
.contact2-images {
  padding: 58px 0;
  background: #fff;
}

.contact2-images {
  background: #f3f4f0;
}

.contact2-grid,
.contact2-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.contact2-form-col {
  padding-right: 14px;
}

.contact2-form-col h2,
.contact2-office-col h2,
.contact2-image-copy h2 {
  margin: 0 0 16px;
  color: var(--green-dark);
  font-size: 40px;
  line-height: 1.1;
}

.contact2-form-col p,
.contact2-image-copy p,
.contact2-office-list p,
.contact2-support-inner p {
  margin: 0 0 22px;
  color: #53605a;
  font-size: 15px;
  line-height: 1.75;
}

.contact2-form {
  display: grid;
  gap: 14px;
}

.contact2-form label span,
.contact2-office-list span {
  display: block;
  margin-bottom: 8px;
  color: #111;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact2-form input,
.contact2-form textarea {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid #ced5cf;
  background: #fff;
}

.contact2-office-col {
  padding-left: 30px;
  border-left: 1px solid #d9ddd8;
}

.contact2-office-list {
  display: grid;
  gap: 22px;
}

.contact2-map,
.contact2-image-frame {
  overflow: hidden;
  border: 1px solid #8da296;
}

.contact2-map img,
.contact2-image-frame img {
  width: 100%;
  display: block;
}

.contact2-map {
  position: relative;
  margin-top: 24px;
}

.contact2-image-copy {
  align-self: center;
}

.contact2-support {
  padding: 54px 0;
  color: #fff;
  background: var(--green-dark);
}

.contact2-support-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact2-support-inner h2 {
  margin: 0 0 10px;
  font-size: 40px;
}

.about2-page {
  font-family: "Libre Franklin", Inter, sans-serif;
}

.about2-hero,
.about2-governance,
.about2-transparency {
  padding: 62px 0;
  background: #fff;
}

.about2-mission,
.about2-council {
  padding: 72px 0;
  background: #efefe9;
}

.about2-pillars {
  padding: 42px 0;
  background: #fff;
  border-top: 1px solid #d9ddd8;
  border-bottom: 1px solid #d9ddd8;
}

.about2-hero-grid,
.about2-split,
.about2-governance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}

.about2-hero-copy h1 {
  margin: 14px 0 18px;
  color: #111;
  font-size: clamp(42px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.about2-hero-copy p,
.about2-mission-copy p,
.about2-governance-copy p,
.about2-section-head p,
.about2-pillars p,
.about2-step-list p,
.about2-footer p {
  color: #57615b;
  font-size: 15px;
  line-height: 1.8;
}

.about2-hero-copy p {
  max-width: 520px;
  margin: 0 0 24px;
}

.about2-hero-media {
  position: relative;
  max-width: 520px;
  margin-left: auto;
}

.about2-hero-frame,
.about2-image-card {
  padding: 6px;
  border: 1px solid #8fa294;
  background: #fff;
}

.about2-hero-frame {
  transform: rotate(2deg);
  box-shadow: var(--shadow);
}

.about2-hero-frame img,
.about2-image-card img {
  width: 100%;
  display: block;
}

.about2-hero-note {
  position: absolute;
  left: -18px;
  bottom: -20px;
  width: 250px;
  padding: 18px;
  color: #fff;
  background: var(--green-dark);
}

.about2-hero-note p {
  margin: 0 0 12px;
  color: inherit;
  font-size: 12px;
  line-height: 1.6;
  font-style: italic;
}

.about2-hero-note span,
.about2-quote p,
.about2-member span,
.about2-quote-card span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about2-mission-copy h2,
.about2-governance-copy h2,
.about2-transparency-copy h2,
.about2-section-head h2,
.about2-cta-inner h2 {
  margin: 8px 0 18px;
  color: #111;
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.about2-mission-copy p,
.about2-governance-copy p {
  margin: 0 0 18px;
}

.about2-quote {
  padding: 66px 0 60px;
  color: #fff;
  background: var(--green-dark);
}

.about2-quote-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.about2-quote blockquote {
  margin: 0 auto 22px;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.2;
  font-style: italic;
  font-weight: 700;
}

.about2-quote p {
  margin: 0;
}

.about2-governance-grid {
  grid-template-columns: 1.25fr 0.75fr;
  align-items: start;
}

.about2-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.about2-info-card,
.about2-quote-card {
  border: 1px solid #d0d6d0;
  background: #fff;
}

.about2-info-card {
  padding: 20px 18px;
}

.about2-info-card h3,
.about2-step-list h3,
.about2-pillars h3,
.about2-member h3 {
  margin: 0 0 10px;
  color: #111;
  font-size: 20px;
  line-height: 1.2;
}

.about2-info-card ul {
  margin: 0;
  padding-left: 18px;
  color: #57615b;
  font-size: 14px;
  line-height: 1.75;
}

.about2-quote-card {
  position: relative;
  min-height: 320px;
  padding: 28px;
  background: #f4f5ef;
}

.about2-quote-mark {
  margin-bottom: 24px;
  color: var(--green-dark);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.about2-quote-card h3 {
  margin: 0 0 22px;
  color: #111;
  font-size: 28px;
  line-height: 1.25;
}

.about2-section-head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.about2-council-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.about2-member {
  text-align: center;
}

.about2-member-image {
  width: 86px;
  height: 86px;
  margin: 0 auto 14px;
  overflow: hidden;
  border: 2px solid var(--green-dark);
  border-radius: 50%;
}

.about2-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about2-member h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.about2-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.about2-pillars-grid article {
  padding: 18px 24px;
  text-align: center;
  border-right: 1px solid rgba(0, 73, 47, 0.14);
}

.about2-pillars-grid article:last-child {
  border-right: 0;
}

.about2-pillars-icon {
  margin-bottom: 16px;
  color: var(--green-dark);
  font-size: 28px;
  line-height: 1;
}

.about2-pillars h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.about2-transparency-copy {
  max-width: 620px;
}

.about2-step-list {
  display: grid;
  gap: 26px;
  margin-top: 28px;
}

.about2-step-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
}

.about2-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--green-dark);
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 700;
}

.about2-step-list h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.about2-transparency-media {
  display: flex;
  justify-content: flex-end;
}

.about2-image-card.tall {
  max-width: 360px;
}

.about2-cta {
  position: relative;
  padding: 72px 0;
  color: #fff;
  background:
    linear-gradient(rgba(0, 73, 47, 0.78), rgba(0, 73, 47, 0.78)),
    url("https://lh3.googleusercontent.com/aida-public/AB6AXuDeIOrdJdEWu0ExaEfnMvb5vbNVOEsLzVbktB6mLPHq4hNLRSyKgK2CXSPEKsMv9K7SRL22JXkA6y7or0DiPxvxp84ZUWXg9u1DMeiDJ-ZBvrMRJ6GzcyHYnZtwvYftGCBUEkPYGkN92OAkqInEeydmt4vv8KQz04vb9mK945wJ0I68VYxeVkejAkTJdBj40dXwNrA4OybgAwMGjlCoe_V12iwxk3klTwaBdCE1qgN3OKUJhJ5afZihzVPjg_9OdwR1wkEYhQi1EkY")
      center/cover;
}

.about2-cta-inner {
  text-align: center;
}

.about2-cta-inner h2 {
  max-width: 760px;
  margin: 0 auto 28px;
  color: inherit;
}

.about2-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-outline-light {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-outline-light:hover {
  color: var(--green-dark);
  background: #fff;
}

.about2-footer {
  padding-top: 62px;
}

.contact2-footer,
.vision2-footer,
.scholar2-footer,
.give2-footer,
.about2-footer {
  padding-top: 62px;
}

.vision2-hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 760px;
}

.vision2-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(28px, 6vw, 76px);
  color: #fff;
  background: var(--green-dark);
}

.vision2-hero-copy h1 {
  margin: 14px 0 18px;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.02;
}

.vision2-hero-copy p {
  max-width: 470px;
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.7;
}

.vision2-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision2-pillars,
.scholar2-impact,
.scholar2-stories,
.give2-options,
.give2-trust {
  padding: 64px 0;
  background: #fff;
}

.vision2-center-head,
.scholar2-center-head {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.vision2-center-head h2,
.scholar2-center-head h2 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.15;
}

.vision2-center-head p {
  margin: 0;
  color: #6a746d;
  font-size: 14px;
  line-height: 1.7;
}

.vision2-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.vision2-card img,
.scholar2-impact-grid img,
.scholar2-story-grid img,
.give2-image-wrap img {
  width: 100%;
  display: block;
}

.vision2-card span {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 8px;
  color: #fff;
  background: var(--green-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vision2-card h3,
.scholar2-impact-grid h3,
.give2-card-grid h3,
.give2-trust-grid h3 {
  margin: 10px 0 8px;
  font-size: 24px;
  line-height: 1.15;
}

.vision2-card p,
.scholar2-impact-grid p,
.scholar2-story-copy p,
.give2-card-grid p,
.give2-panel-copy p,
.give2-trust-grid p,
.give2-global-card p {
  margin: 0;
  color: #5b625d;
  font-size: 14px;
  line-height: 1.72;
}

.vision2-quote,
.scholar2-quote {
  padding: 64px 0 58px;
  color: #fff;
  background: var(--green-dark);
}

.vision2-quote-inner,
.scholar2-quote-inner {
  position: relative;
  text-align: center;
}

.vision2-quote-mark {
  margin-bottom: 10px;
  font-size: 44px;
  color: rgba(255, 255, 255, 0.35);
}

.vision2-quote blockquote,
.scholar2-quote blockquote {
  max-width: 900px;
  margin: 0 auto 16px;
  font-size: clamp(30px, 3.2vw, 46px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
}

.vision2-quote p,
.scholar2-quote p {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vision2-roadmap,
.scholar2-donation,
.give2-panel {
  padding: 64px 0;
  background: #fff;
}

.vision2-roadmap-grid,
.scholar2-donation-grid,
.give2-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}

.vision2-roadmap-media {
  position: relative;
  max-width: 500px;
}

.vision2-roadmap-media img {
  width: 100%;
  display: block;
  box-shadow: var(--shadow);
}

.vision2-year-note {
  position: absolute;
  bottom: -26px;
  left: 68%;
  width: 170px;
  padding: 14px;
  border: 1px solid #d3d8d2;
  background: #efece6;
}

.vision2-year-note strong {
  display: block;
  color: var(--green-dark);
  font-size: 26px;
}

.vision2-year-note p {
  margin: 6px 0 0;
  color: #5b625d;
  font-size: 11px;
  line-height: 1.55;
}

.vision2-roadmap-copy h2,
.give2-panel-copy h2 {
  margin: 8px 0 18px;
  font-size: 40px;
  line-height: 1.1;
}

.vision2-roadmap-list {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.vision2-roadmap-list h4 {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vision2-roadmap-list p {
  margin: 0;
  color: #5b625d;
  font-size: 14px;
  line-height: 1.65;
}

.vision2-donation {
  padding: 64px 0 74px;
  background: #f5f4f1;
}

.vision2-donation-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  padding: 28px;
  background: #fff;
  border: 1px solid #e1e4df;
}

.vision2-donation-copy h2 {
  margin: 0 0 12px;
  font-size: 34px;
}

.vision2-donation-copy p {
  margin: 0 0 18px;
  color: #5b625d;
  font-size: 14px;
  line-height: 1.75;
}

.vision2-tax {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vision2-donation-panel {
  padding: 8px;
  background: #f8faf5;
}

.vision2-amount-row,
.scholar2-amount-row,
.give2-amount-grid,
.give2-toggle-row {
  display: grid;
  gap: 8px;
}

.vision2-amount-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 16px;
}

.vision2-amount-row button,
.scholar2-amount-row button,
.give2-amount-grid button,
.give2-toggle-row button {
  padding: 12px 10px;
  border: 1px solid #cad1cb;
  color: #111;
  background: #fff;
  font-weight: 700;
}

.vision2-amount-row button.active,
.scholar2-amount-row button.active,
.give2-amount-grid button.active,
.give2-toggle-row button.active {
  color: #fff;
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.vision2-donation-panel select,
.give2-form-card input,
.give2-form-card select {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid #cad1cb;
  background: #fff;
}

.scholar2-hero {
  padding: 46px 0 58px;
  background: #fff;
}

.scholar2-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 38px;
  align-items: center;
}

.scholar2-copy h1 {
  margin: 14px 0 16px;
  font-size: clamp(42px, 5vw, 58px);
  line-height: 1.04;
}

.scholar2-copy p {
  max-width: 520px;
  margin: 0 0 24px;
  color: #5b625d;
  font-size: 15px;
  line-height: 1.72;
}

.scholar2-portrait {
  position: relative;
  max-width: 440px;
  margin-left: auto;
}

.scholar2-portrait-frame {
  transform: rotate(1.5deg);
  border: 1px solid #abb6af;
  padding: 6px;
  background: #fff;
}

.scholar2-portrait-frame img {
  width: 100%;
  display: block;
}

.scholar2-quote-box {
  position: absolute;
  left: -24px;
  bottom: -10px;
  width: 240px;
  padding: 18px;
  color: #fff;
  background: var(--green-dark);
}

.scholar2-quote-box p {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.6;
  font-style: italic;
}

.scholar2-quote-box span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scholar2-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.scholar2-impact-grid article img {
  margin-bottom: 14px;
}

.scholar2-stories {
  background: #fff;
}

.scholar2-story-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.scholar2-story-head h2 {
  margin: 6px 0 0;
  font-size: 46px;
}

.scholar2-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.55fr 0.55fr;
  gap: 10px;
}

.scholar2-story-large,
.scholar2-story-small,
.scholar2-story-copy {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  background: #f1f3ee;
}

.scholar2-story-large {
  grid-column: 1 / 2;
  min-height: 210px;
}

.scholar2-story-large img,
.scholar2-story-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scholar2-story-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 16px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

.scholar2-story-overlay p {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.55;
  font-style: italic;
}

.scholar2-story-overlay span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scholar2-story-copy {
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scholar2-story-copy h4 {
  margin: 0 0 8px;
  font-size: 18px;
}

.scholar2-donation {
  background: #fff;
}

.scholar2-donation-grid {
  background: var(--green-dark);
}

.scholar2-donation-image {
  position: relative;
}

.scholar2-donation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scholar2-donation-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.28);
}

.scholar2-donation-overlay h2 {
  margin: 0 0 10px;
  font-size: 48px;
  line-height: 0.98;
}

.scholar2-donation-panel {
  padding: 28px;
  color: #fff;
}

.scholar2-radio-row {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 13px;
}

.scholar2-radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.scholar2-amount-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.scholar2-donation-panel p {
  margin: 12px 0 0;
  font-size: 10px;
  text-align: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.give2-hero {
  padding: 36px 0 58px;
  background: #fff;
}

.give2-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.give2-copy h1 {
  margin: 14px 0 14px;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.04;
  color: var(--green-dark);
}

.give2-copy p {
  max-width: 480px;
  margin: 0 0 24px;
  color: #5b625d;
  line-height: 1.75;
}

.give2-image-wrap {
  position: relative;
  max-width: 520px;
  margin-left: auto;
}

.give2-note {
  position: absolute;
  left: -18px;
  bottom: -12px;
  width: 270px;
  padding: 18px 18px 16px;
  border: 1px solid #d7ddd7;
  background: #fff;
}

.give2-note-icon {
  margin-bottom: 8px;
  font-size: 22px;
}

.give2-note h4 {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.give2-note p {
  margin: 0;
  color: #5b625d;
  font-size: 12px;
  line-height: 1.55;
}

.give2-card-grid,
.give2-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.give2-card-grid article,
.give2-trust-grid article {
  padding: 28px 20px;
  border: 1px solid #d9ddd8;
  text-align: center;
}

.give2-card-icon,
.give2-trust-icon {
  margin-bottom: 14px;
  font-size: 28px;
}

.give2-panel {
  background: #f3f4f0;
}

.give2-panel-copy ul {
  padding-left: 18px;
  margin: 18px 0 0;
  color: #111;
  line-height: 1.9;
}

.give2-form-card {
  padding: 18px;
  border: 1px solid #d9ddd8;
  background: #fff;
}

.give2-toggle-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 16px;
}

.give2-form-card label {
  display: block;
  margin: 14px 0 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.give2-amount-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.give2-form-card p {
  margin: 10px 0 0;
  color: #7a817c;
  font-size: 11px;
  text-align: center;
}

.give2-trust {
  background: #fff;
}

.give2-global {
  padding: 66px 0 70px;
  color: #fff;
  background: var(--green-dark);
}

.give2-global-head {
  text-align: center;
  margin-bottom: 28px;
}

.give2-global-head h2 {
  margin: 8px 0 0;
  font-size: clamp(34px, 3vw, 50px);
  line-height: 1.1;
}

.give2-global-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.give2-global-card {
  padding: 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.give2-global-card h3 {
  margin: 0 0 10px;
  font-size: 26px;
}

.give2-global-card p,
.give2-global-card li {
  color: rgba(255, 255, 255, 0.82);
}

.give2-global-card ul {
  padding-left: 18px;
  margin: 14px 0 0;
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .mobile-actions {
    display: flex;
  }

  .hero-grid,
  .two-column-grid,
  .gift-grid,
  .footer-grid,
  .page-hero-grid,
  .roadmap-grid,
  .feature-split,
  .contact-layout,
  .banking-band,
  .capital-feature-layout,
  .contact2-grid,
  .contact2-image-grid,
  .about2-hero-grid,
  .about2-split,
  .about2-governance-grid,
  .vision2-roadmap-grid,
  .vision2-donation-card,
  .scholar2-hero-grid,
  .scholar2-donation-grid,
  .give2-hero-grid,
  .give2-panel-grid,
  .give2-global-grid {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    min-height: 560px;
  }

  .gift-copy {
    position: static;
  }

  .page-hero-copy {
    padding: 72px 0 0;
  }

  .page-hero-media {
    min-height: 480px;
  }

  .story-card.elevated {
    transform: none;
  }

  .feature-stack,
  .page-contact-form-wrap,
  .contact-info-panel {
    padding: 0;
  }

  .contact-info-panel {
    border-left: 0;
  }

  .year-card,
  .poster-quote,
  .ways-note {
    position: static;
    max-width: none;
    margin-top: 16px;
    transform: none;
  }

  .feature-float {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .capital-feature-float {
    position: static;
    width: 100%;
    max-width: 280px;
    margin-top: 16px;
    margin-left: auto;
  }

  .contact2-office-col {
    padding-left: 0;
    border-left: 0;
  }

  .contact2-support-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .vision2-hero,
  .scholar2-hero-grid,
  .give2-hero-grid {
    grid-template-columns: 1fr;
  }

  .about2-hero-media,
  .about2-transparency-media {
    margin-inline: auto;
  }

  .about2-hero-note {
    position: static;
    width: auto;
    margin-top: 16px;
  }

  .about2-pillars-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 73, 47, 0.14);
  }

  .about2-pillars-grid article:last-child {
    border-bottom: 0;
  }

  .vision2-year-note,
  .scholar2-quote-box,
  .give2-note {
    position: static;
    width: auto;
    margin-top: 16px;
  }
}

@media (max-width: 900px) {
  .pillars-grid,
  .gift-cards,
  .news-grid,
  .amount-grid,
  .three-col-grid,
  .capital-card-grid,
  .about2-council-grid,
  .about2-pillars-grid,
  .about2-info-grid,
  .scholar2-impact-grid,
  .give2-card-grid,
  .give2-trust-grid,
  .vision2-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pillar-card {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .pillar-card:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .pillar-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .footer-bottom,
  .news-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .banking-band {
    grid-template-columns: 1fr;
  }

  .capital-section-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .scholar2-story-grid {
    grid-template-columns: 1fr 1fr;
  }

  .scholar2-story-large {
    grid-column: span 2;
  }

  .about2-governance-grid {
    gap: 28px;
  }
}

@media (max-width: 700px) {
  main {
    padding-top: 88px;
  }

  .container {
    width: min(100% - 32px, 1280px);
  }

  .section,
  .hero-section {
    padding: 64px 0;
  }

  .hero-section {
    padding-top: 124px;
  }

  .hero-collage {
    min-height: 430px;
  }

  .hero-card {
    left: 4%;
    right: 4%;
    bottom: 20%;
    gap: 12px;
    padding: 14px;
  }

  .hero-crest {
    height: 42px;
  }

  .hero-card-divider {
    height: 34px;
  }

  .hero-card-text span {
    font-size: 13px;
  }

  .hero-card-text small {
    font-size: 9px;
  }

  .about-image img,
  .feature-image,
  .news-card {
    height: 320px;
    min-height: 320px;
  }

  .pillars-grid,
  .gift-cards,
  .news-grid,
  .amount-grid,
  .contact-meta,
  .three-col-grid,
  .metrics-row,
  .capital-card-grid,
  .capital-stats,
  .about2-council-grid,
  .about2-pillars-grid,
  .about2-info-grid,
  .scholar2-impact-grid,
  .give2-card-grid,
  .give2-trust-grid,
  .vision2-card-grid,
  .give2-global-grid,
  .scholar2-story-grid,
  .vision2-amount-row,
  .scholar2-amount-row,
  .give2-amount-grid,
  .give2-toggle-row {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    border-right: 0 !important;
    border-bottom: 1px solid var(--border);
  }

  .pillar-card:last-child {
    border-bottom: 0;
  }

  .quote-layout {
    flex-direction: column;
  }

  .quote-mark {
    font-size: 64px;
  }

  .news-content {
    padding: 24px;
  }

  .news-content h3 {
    font-size: 20px;
  }

  .amount-grid {
    gap: 8px;
  }

  .footer-policy-links,
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .modal-panel {
    padding: 22px 20px;
  }

  .modal-head h3 {
    font-size: 22px;
  }

  .editorial-page {
    padding-bottom: 64px;
  }

  .immersive-banner,
  .contact-banner,
  .immersive-copy,
  .contact-banner-copy {
    min-height: 420px;
  }

  .page-hero-copy h2,
  .immersive-copy h2,
  .contact-banner-copy h2,
  .roadmap-copy h3,
  .scholarship-copy h2,
  .feature-copy h3,
  .page-contact-form-wrap h3,
  .contact-info-panel h3 {
    font-size: 30px;
  }

  .glass-card,
  .giving-card,
  .banking-card {
    padding: 22px;
  }

  .capital-hero {
    min-height: 620px;
  }

  .capital-hero-inner {
    min-height: 620px;
    align-items: end;
    padding-bottom: 34px;
  }

  .capital-hero-card {
    padding: 22px;
  }

  .capital-hero-card h1 {
    font-size: 36px;
  }

  .capital-feature-band,
  .capital-projects-grid,
  .capital-cta-section {
    padding-block: 54px;
  }

  .capital-feature-copy,
  .capital-heading-block,
  .capital-cta-inner {
    max-width: none;
  }

  .capital-feature-copy h2,
  .capital-cta-inner h2 {
    font-size: 32px;
  }

  .capital-quote-inner blockquote {
    font-size: 28px;
  }

  .capital-footer-brand {
    font-size: 24px;
  }

  .contact2-hero {
    min-height: 360px;
  }

  .contact2-hero-inner h1,
  .about2-hero-copy h1,
  .vision2-hero-copy h1,
  .scholar2-copy h1,
  .give2-copy h1 {
    font-size: 34px;
  }

  .contact2-form-col h2,
  .contact2-office-col h2,
  .contact2-image-copy h2,
  .about2-mission-copy h2,
  .about2-governance-copy h2,
  .about2-transparency-copy h2,
  .about2-section-head h2,
  .about2-cta-inner h2,
  .vision2-roadmap-copy h2,
  .give2-panel-copy h2,
  .scholar2-story-head h2,
  .give2-global-head h2 {
    font-size: 30px;
  }

  .vision2-hero-copy,
  .about2-hero,
  .about2-mission,
  .about2-governance,
  .about2-council,
  .about2-pillars,
  .about2-transparency,
  .about2-cta,
  .scholar2-hero,
  .give2-hero,
  .vision2-pillars,
  .scholar2-impact,
  .scholar2-stories,
  .scholar2-donation,
  .give2-options,
  .give2-panel,
  .give2-trust,
  .give2-global {
    padding-block: 48px;
  }

  .vision2-quote blockquote,
  .scholar2-quote blockquote {
    font-size: 28px;
  }

  .scholar2-donation-overlay h2 {
    font-size: 34px;
  }

  .about2-step-list article {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .about2-step-num {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 1100px) {
  .site-header {
    position: relative;
    z-index: 40;
  }

  .site-header .header-inner {
    position: relative;
  }

  .site-header .desktop-nav {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 18px clamp(18px, 4vw, 28px) 22px;
    background: var(--white);
    border-top: 1px solid #d9ddd8;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.1);
    z-index: 25;
  }

  .site-header .desktop-nav .navbar-collapse {
    display: none;
    width: 100%;
  }

  .site-header .desktop-nav .navbar-collapse.show {
    display: block !important;
  }

  .site-header .desktop-nav .navbar-nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    padding: 0;
  }

  .site-header .desktop-nav .nav-item {
    width: 100%;
  }

  .site-header .desktop-nav .nav-link,
  .site-header .desktop-nav .dropdown-item {
    display: block;
    width: 100%;
    padding: 6px 0;
  }

  .site-header .desktop-nav .nav-donate {
    display: inline-flex;
    width: 100%;
    margin: 14px 0 0;
  }

  .site-header .mobile-actions {
    position: relative;
    z-index: 30;
  }
}
