@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap");
:root {
  --blue: #2863ad;
  --cyan: #28c1ed;
  --ink: #11253f;
  --muted: #627188;
  --paper: #f7fafc;
  --line: #dce6ee;
  --orange: #f6a623;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: min(1160px, calc(100% - 48px));
  margin: auto;
}
.topbar {
  background: var(--ink);
  color: #d8e5f2;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
}
.topbar .container {
  min-height: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header {
  position: relative;
  z-index: 5;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(17, 37, 63, 0.08);
}
.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand img {
  width: 225px;
  height: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 21px;
  background: var(--blue);
  color: white;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  font: 600 0.82rem "DM Sans";
  transition: 0.2s ease;
}
.nav-cta {
  background: var(--orange);
  color: #172b43;
}
.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.button.outline {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 1.7rem;
}
.hero {
  min-height: 610px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(14, 35, 59, 0.94),
      rgba(14, 35, 59, 0.7) 43%,
      rgba(14, 35, 59, 0.05) 80%
    ),
    url("Images/asset-037.webp") center/cover;
  filter: grayscale(1);
  transition: filter 0.45s ease;
}
.hero:hover {
  filter: grayscale(0);
}
.hero > .container {
  width: min(1400px, calc(100% - 24px));
  padding: 0 100px;
}
.hero-copy {
  color: #fff;
  width: 100%;
  padding: 95px 0;
}
.eyebrow {
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1,
h2,
h3 {
  margin: 0 0 18px;
  line-height: 1.08;
}
h1,
h2 {
  font-family: "Playfair Display", serif;
}
h1 {
  font-size: clamp(1.6rem, 3.5vw, 3.2rem);
  max-width: 1000px;
}
h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}
h3 {
  font-size: 1.25rem;
}
.hero p {
  font-size: 1.08rem;
  max-width: 840px;
  color: #e8f0f7;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.button.light {
  background: #fff;
  color: var(--blue);
}
.button.cyan {
  background: var(--cyan);
  color: var(--ink);
}
.section {
  padding: 100px 0;
}
.section-head {
  max-width: 660px;
  margin-bottom: 45px;
}
.section-head p,
.intro p {
  color: var(--muted);
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}
.intro-image {
  position: relative;
}
.intro-image img {
  width: 100%;
  height: 475px;
  object-fit: cover;
}
.image-stamp {
  position: absolute;
  right: -25px;
  bottom: 25px;
  background: var(--cyan);
  padding: 23px;
  width: 165px;
  font-weight: 700;
  font-size: 0.83rem;
}
.pillars {
  background: #eef5f9;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.pillar {
  min-height: 190px;
  background: var(--blue);
  padding: 25px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  transition: 0.2s;
}
.pillar:hover {
  transform: translateY(-5px);
  background: #1f5598;
  box-shadow: 0 15px 30px #163d5b35;
}
.pillar-icon {
  color: var(--cyan);
  font-size: 2rem;
  line-height: 1;
  min-height: 34px;
  display: block;
}
.pillar h3 {
  color: #fff;
  margin: 0;
}
.pillar p {
  color: #dcecf6;
  font-size: 0.9rem;
  margin: 0;
}
.impact {
  position: relative;
  isolation: isolate;
  background: var(--blue);
  color: #fff;
}
.impact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.46;
  background:
    linear-gradient(rgba(40, 99, 173, 0.78), rgba(40, 99, 173, 0.78)),
    url("Images/asset-014.webp") center/cover;
  pointer-events: none;
}
.impact .section-head p {
  color: #dbeaf6;
}
.impact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 55px;
  align-items: center;
}
.impact-photo img {
  height: 430px;
  width: 100%;
  object-fit: cover;
}
.impact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 20px;
}
.impact-stat {
  border-top: 1px solid #83b5d7;
  padding-top: 15px;
}
.impact-stat strong {
  display: block;
  font: 700 2.3rem "Playfair Display";
  color: var(--cyan);
}
.impact-stat span {
  font-size: 0.84rem;
  color: #d7e8f3;
}
.band {
  background: var(--orange);
  padding: 55px 0;
}
.band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.band h2 {
  font-size: 2.6rem;
  margin: 0;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.news-card {
  background: #fff;
}
.news-card img {
  height: 330px;
  width: 100%;
  object-fit: cover;
}
.news-content {
  padding: 24px;
}
.news-content small {
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}
.news-content p {
  color: var(--muted);
  font-size: 0.9rem;
}
.page-hero {
  padding: 80px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 37, 63, 0.97), rgba(40, 99, 173, 0.77)),
    url("Images/asset-103.webp") center/cover;
}
.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  max-width: 780px;
}
.page-hero p {
  max-width: 650px;
  color: #e0edf5;
  font-size: 1.05rem;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.founder-layout {
  display: grid;
  grid-template-columns: 40% minmax(0, 1fr);
  gap: 50px;
  align-items: center;
}
.founder-image {
  height: 480px;
  overflow: hidden;
}
.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.copy p,
.copy li {
  color: var(--muted);
}
.trustees-intro {
  margin-bottom: 42px;
}
.trustees-section {
  background: #fff;
}
.trustees-list,
.people-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}
.trustees-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px;
}
.trustees-list li {
  position: relative;
  padding: 0 0 0 22px;
}
.trustees-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 9px;
  height: 2px;
  background: var(--cyan);
}
.trustees-details {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
}
.trustees-panel,
.leadership-panel {
  padding: 30px;
  background: #eef5f9;
}
.leadership-panel {
  background: var(--blue);
  color: #fff;
}
.leadership-panel p,
.leadership-panel li {
  color: #dcecf6;
}
.trustees-panel h3,
.leadership-panel h3 {
  margin-bottom: 8px;
}
.leadership-panel h3 {
  color: #fff;
}
.people-list {
  display: grid;
  gap: 10px;
}
.people-list li {
  padding: 10px 0;
  border-bottom: 1px solid #cadce6;
}
.leadership-panel .people-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-color: #5a8fba;
}
.people-list span {
  color: var(--cyan);
  font-size: 0.82rem;
  text-align: right;
}
.governance-content {
  width: min(1160px, calc(100% - 48px));
  margin: auto;
}
.governance-section {
  position: relative;
  isolation: isolate;
  background: var(--blue);
  color: #fff;
}
.governance-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.4;
  background:
    linear-gradient(rgba(40, 99, 173, 0.78), rgba(40, 99, 173, 0.78)),
    url("Images/asset-061.webp") center/cover;
  pointer-events: none;
}
.governance-content h2 {
  text-transform: capitalize;
}
.governance-copy {
  margin-top: 28px;
}
.governance-section .governance-copy,
.governance-section .governance-bottom p {
  color: #ffffff;
}
.governance-standards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 0;
  margin: 3px 0;
  list-style: none;
}
.governance-standards li {
  display: flex;
  align-items: flex-end;
  padding-top: 12px;
  padding-left: 12px;
  padding-bottom: 12px;
  background: var(--cyan);
  font-weight: 700;
}
.governance-bottom {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  border-top: 1px solid #83b5d7;
  padding-top: 22px;
}
.governance-bottom p {
  margin-top: 0;
}
.quote {
  border-left: 5px solid var(--cyan);
  padding: 12px 0 12px 25px;
  font: 600 1.4rem "Playfair Display";
  margin: 28px 0;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.value-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 24px;
}
.value-card h3 {
  color: var(--blue);
}
.value-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.work-card {
  background: #fff;
  min-height: 360px;
}
.work-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.work-card div {
  padding: 22px;
}
.work-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}
.approach-section {
  background: #fff;
  border-top: 1px solid var(--line);
}
.approach-layout,
.sustainability-layout,
.partnership-layout,
.movement-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.approach-layout .section-head,
.partnership-layout .section-head {
  margin-bottom: 0;
}
.approach-layout .section-head h2 {
  max-width: 420px;
}
.approach-layout > div:last-child {
  border-left: 1px solid var(--line);
  padding-left: 35px;
}
.lead-copy {
  margin: 0 0 25px;
  color: var(--ink);
  font-size: 1.12rem;
}
.partner-list,
.commitment-list,
.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.partner-list li,
.commitment-list li,
.benefit-list li {
  border-top: 1px solid var(--line);
  padding: 12px 0;
  color: var(--muted);
  font-weight: 600;
}
.partner-list li {
  position: relative;
  border-top: 0;
  border-bottom: 1px solid var(--line);
  padding: 7px 7px;
}

.commitment-list li::before,
.benefit-list li::before {
  content: "+";
  color: var(--cyan);
  margin-right: 10px;
  font-weight: 700;
}
.approach-statement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.approach-statement p {
  margin: 0;
}
.approach-statement p:first-child {
  font:
    600 1.35rem/1.35 "Playfair Display",
    serif;
  color: var(--blue);
}
.sustainability-section {
  background: #eef5f9;
}
.sustainability-layout {
  align-items: center;
}
.sustainability-layout > .copy {
  padding-right: 25px;
}
.sustainability-layout h3 {
  margin-top: 0;
  color: var(--blue);
}
.commitment-list {
  grid-template-columns: 1fr;
  counter-reset: commitment;
  gap: 0;
}
.commitment-list li {
  counter-increment: commitment;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  min-height: 58px;
  padding: 13px 0;
}
.commitment-list li::before {
  content: counter(commitment, decimal-leading-zero);
  margin: 0;
  color: var(--blue);
  font:
    700 1.1rem "Playfair Display",
    serif;
}
.partnership-section {
  background: var(--blue);
  color: #fff;
}
.partnership-layout {
  align-items: center;
}
.partnership-layout .section-head h2 {
  max-width: 480px;
}
.partnership-section .section-head p,
.partnership-note {
  color: #dcecf6;
}
.benefit-list li {
  min-height: 82px;
  border: 1px solid #5a8fba;
  padding: 19px 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}
.benefit-list li::before {
  content: "→";
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.partnership-note {
  margin: 25px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--cyan);
}
.movement-section {
  position: relative;
  overflow: hidden;
}
.movement-section::after {
  position: absolute;
  right: -20px;
  bottom: -42px;
  color: rgba(17, 37, 63, 0.08);
  font:
    700 8rem/1 "Playfair Display",
    serif;
  pointer-events: none;
}
.movement-inner {
  align-items: center;
  position: relative;
  z-index: 1;
}
.movement-inner h2 {
  margin-bottom: 0;
  max-width: 480px;
}
.movement-copy p {
  color: #17334d;
}
.movement-copy {
  border-left: 1px solid rgba(17, 37, 63, 0.35);
  padding-left: 35px;
}
.movement-copy .button {
  background: var(--ink);
  color: #fff;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}
.contact-form-layout,
.volunteer-form-layout,
.donation-form-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}
.contact-form-card,
.volunteer-form-card,
.donation-form-card {
  background: #fff;
  padding: 35px;
  box-shadow: 0 10px 30px #1536570a;
}
.volunteer-form-card,
.donation-form-card {
  align-self: start;
}
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.social-links a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  border: 1px solid var(--line);
  background: #fff;
  transition: 0.2s ease;
}
.social-links a:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}
.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.social-links svg rect,
.social-links svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.social-links svg .social-icon-fill {
  fill: currentColor;
  stroke: none;
}
label {
  display: block;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.84rem;
  margin-bottom: 16px;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 13px;
  margin-top: 7px;
  font: inherit;
  background: #fbfdfe;
}
textarea {
  min-height: 125px;
  resize: vertical;
}
.notice {
  display: none;
  margin-top: 18px;
  color: #1c7547;
  font-weight: 700;
}
footer {
  background: var(--ink);
  color: #d9e5ee;
  padding: 65px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
footer .brand img {
  width: 250px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
footer h3 {
  color: #fff;
  font-size: 1rem;
}
footer a,
footer p {
  color: #aebfcf;
  font-size: 0.87rem;
  display: block;
  margin: 9px 0;
}
.copyright {
  border-top: 1px solid #304960;
  padding-top: 20px;
  font-size: 0.75rem;
  color: #8fa5b8;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 850px) {
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 84px;
    padding: 20px 24px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 20px #0001;
  }
  .nav-links.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .nav-cta {
    display: none;
  }
  .intro-grid,
  .impact-grid,
  .two-col,
  .founder-layout,
  .trustees-details,
  .approach-layout,
  .sustainability-layout,
  .partnership-layout,
  .movement-inner,
  .contact-form-layout,
  .volunteer-form-layout,
  .donation-form-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-grid,
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    min-height: 560px;
  }
  .image-stamp {
    right: 15px;
  }
  .founder-image {
    height: 420px;
  }
  .trustees-list {
    grid-template-columns: 1fr;
  }
  .governance-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .approach-statement {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .approach-layout > div:last-child,
  .movement-copy {
    border-left: 0;
    padding-left: 0;
  }
  .governance-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 520px) {
  .container {
    width: min(100% - 32px, 1160px);
  }
  .topbar .container {
    font-size: 0.65rem;
  }
  .brand img {
    width: 185px;
  }
  .hero-copy {
    padding: 70px 0;
  }
  h1 {
    font-size: 1.625rem;
  }
  .section {
    padding: 70px 0;
  }
  .pillar-grid,
  .news-grid,
  .gallery,
  .value-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .leadership-panel .people-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
  .people-list span {
    text-align: left;
  }
  .governance-standards {
    grid-template-columns: 1fr 1fr;
  }
  .partner-list,
  .benefit-list {
    grid-template-columns: 1fr;
  }
  .band-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .band h2 {
    font-size: 2.1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .copyright {
    display: block;
  }
}
