:root {
  --dark: #090922;
  --text: #12142d;
  --muted: #626878;
  --accent: #9b0000;
  --purple: #474969;
  --light: #f8f8f6;
  --news: #e9e9e9;
  --panel: #e7e7e9;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--light);
  color: var(--text);
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 14px;
}
a {
  color: inherit;
}

img {
  max-width: 100%;
}

.container {
  width: min(1420px, calc(100% - 72px));
  margin: 0 auto;
}
.section-pad {
  padding: 44px 0 70px;
}
.site-header {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  border-bottom: 1px solid #ddd;
  background: var(--light);
  position: relative;
  z-index: 5;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 800;
  color: #6a5b4b;
  line-height: 1.02;
  font-size: 18px;
}
.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ef7f79;
  display: grid;
  place-items: center;
  color: #ef5b55;
  font-size: 11px;
  font-weight: 800;
}
.main-nav {
  display: flex;
  gap: 44px;
  font-size: 14px;
  color: #010525;
  align-items: center;
}
.main-nav a {
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
  color: #555;
}
.main-nav a.active {
  text-decoration: underline;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}
.donate-btn {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 26px;
  padding: 18px 60px;
  font-weight: 500;
  font-size: 20px;
}
.login-link {
  text-decoration: none;
  color: #303244;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 30px;
  color: var(--dark);
  cursor: pointer;
}
.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  text-align: center;
  font-size: 105px;
  line-height: 1.05;
  margin: 0 0 76px;
  color: var(--dark);
  font-weight: 800;
}
.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}
.image-grid img {
  width: 100%;
  /* height: 320px; */
  object-fit: cover;
  display: block;
  background: #cfcfcf;
}
.shape-left {
  border-radius: 88px 0 88px 0;
}
.shape-right {
  border-radius: 0 88px 0 88px;
}
.shape-left-small {
  border-radius: 72px 0 72px 0;
}
.intro-text {
  text-align: center;
  margin: 68px 0 48px;
  color: #030829;
  font-size: 22px;
  line-height: 1.32;
}
.eyebrow {
  font-size: 14px;
  margin-bottom: 30px;
  letter-spacing: 0.02em;
}
.bottom-images {
  /* max-width: 1000px; */
  margin: 0 auto;
}
.bottom-images img {
  /* height: 374px; */
}
.vision {
  padding-top: 58px;
  padding-bottom: 92px;
}
.vision-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.mini-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #3d4261;
  margin: 0 0 58px;
}
.vision h2,
.news h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 65px;
  line-height: 1.1;
  margin: 0;
  color: var(--dark);
}
.experience-pill {
  background: #ab3030;
  color: #fff;
  border-radius: 70px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 53px;
  line-height: 1.02;
  text-align: center;
  padding: 34px 24px;
  font-weight: 700;
}
.vision-copy {
  margin-top: 70px;
  color: #6b7280;
  font-size: 24px;
  line-height: 1.68;
}
.vision-copy strong {
  font-weight: 800;
  color: #5f6673;
}
.news {
  background: var(--news);
  text-align: center;
  padding-top: 58px;
  padding-bottom: 62px;
}
.news h2 {
  margin-bottom: 40px;
  font-size: 65px;
}
.news-intro {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 34px;
  color: #111532;
}
.small-btn {
  display: inline-block;
  background: var(--purple);
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  padding: 18px 61px;
  font-size: 23px;
  font-weight: 600;
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 70px 0 38px;
  text-align: center;
}
.video-card {
  height: 190px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.28);
  border-radius: 3px;
  overflow: hidden;
  background: #222;
}
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 50px;
}
.stories-grid h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 21px;
  line-height: 1.15;
  text-decoration: underline;
  color: #343650;
  margin: 24px 12px 0;
}
.stats {
  padding: 54px 0 64px;
  background: var(--light);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stats strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 55px;
  color: #4b4d6d;
  margin-bottom: 14px;
}
.stats span {
  font-size: 22px;
  color: #14182e;
}
.footer {
  background: var(--light);
  padding: 0 0 42px;
  color: #1d213a;
}
.footer-grid {
  border-top: 1px solid #d5d5d5;
  padding-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.8fr;
  gap: 80px;
}
.footer h4 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 16px;
  margin: 0 0 28px;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 14px;
}
.footer-nav a {
  font-size: 19px;
  font-weight: 800;
  text-decoration: underline;
  color: #3a2219;
}
.socials {
  display: flex;
  gap: 10px;
  align-items: center;
}
.socials span {

  font-size: 12px;
}

.socials span a {

}

.socials span a i {
  font-size: 24px;
}


.people-icons {
  margin-top: 18px;
  letter-spacing: 9px;
}
.footer p {
  font-size: 20px;
  margin: 0 0 36px;
  color: #41475a;
}
.copyright {
  text-align: right;
  width: min(1120px, calc(100% - 72px));
  margin: 40px auto 0 !important;
  font-size: 16px !important;
  color: #1d223a !important;
}
.grey-block {
  background: var(--panel);
  border-radius: 26px;
  margin: 0 auto 24px;
  padding: 22px 0 36px;
}
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}
.story-copy h1,
.story-copy h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 54px;
  line-height: 1.06;
  margin: 0 0 40px;
  color: var(--dark);
}
.story-copy h2 {
  margin-top: 28px;
}
.story-copy p {
  font-size: 21px;
  line-height: 1.34;
  text-align: justify;
  margin: 0 0 28px;
}
.story-copy img {
  max-width: 100%;
  display: block;
}
.story-copy .founder {
  width: 430px;
  margin: 95px auto 25px;
}
.story-copy.right p {
  max-width: 650px;
}
.about-intro {
  font-size: 25px;
  line-height: 1.85;
  text-align: justify;
  margin: 30px 0 70px;
}
.two-col {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 55px;
  align-items: center;
  margin-bottom: 70px;
}
.center {
  text-align: center;
}
.bold-center {
  text-align: center;
  font-weight: 800;
  color: #5e6070;
  font-size: 24px;
  line-height: 1.45;
}
.about-page img {
  max-width: 100%;
}
.about-row p {
  color: #5c6275;
  font-size: 22px;
  line-height: 1.4;
}
.under {
  text-decoration: underline;
  color: #606473;
  font-size: 26px;
  line-height: 1.5;
}
.goals-row p {
  font-size: 25px;
  color: #606473;
  margin: 42px 0;
}
.partners-title {
  text-align: center;
  font-size: 30px;
  margin: 20px 0 50px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  text-align: center;
  align-items: end;
  margin-bottom: 60px;
}
.partners-grid img {
  width: auto;
  background: #fff;
  height: 240px;
}
.partners-grid h4 {
  color: #5c6275;
  font-size: 25px;
}
.partner-notes {
  font-size: 21px;
  line-height: 1.5;
  text-align: justify;
}

.partner-notes li {
  padding-bottom: 15px;
}


.partner-notes a {
  color: #0a67bd;
}
.projects-page {
  padding-top: 35px;
}
.projects-page h1 {
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 28px;
}
.projects-page h3 {
  font-size: 15px;
  margin: 28px 0 22px;
}
.projects-page p {
  font-size: 16px;
  line-height: 1.35;
  text-align: justify;
  margin: 0 0 22px;
}
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  margin-bottom: 42px;
}
.projects-grid img {
  width: 100%;
  object-fit: cover;
}
.rounded-img {
  border-radius: 0 45px 45px 45px;
  margin-top: 22px;
}
.wide-img {
  margin-bottom: 28px;
}
.stack {
  display: grid;
  gap: 26px;
  align-content: start;
}
.stack img,
.education-gallery img {
  border-radius: 0 45px 0 45px;
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.education-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 90px;
  margin-top: 44px;
}
.education-gallery img {
  height: 150px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: start;
}
.contact-info {
  padding-top: 10px;
}
.contact-row {
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: center;
  margin-bottom: 78px;
}
.big-icon {
  font-size: 80px;
  color: #d06527;
  text-align: center;
  line-height: 1;
}
.mail {
  color: #26364b;
}
.pin {
  background: #d06527;
  color: #fff;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 60px;
  margin: auto;
}
.contact-row p {
  font-size: 28px;
  line-height: 1.25;
  margin: 0;
}
.contact-row a {
  text-decoration: underline;
}
.contact-form {
  background: #fff;
  padding: 26px 24px;
}
.contact-form h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 16px;
  margin: 0 0 28px;
}
.contact-form label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 17px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  height: 35px;
  border: 1px solid #d5d5d5;
  margin-top: 7px;
  padding: 6px 10px;
  background: #fff;
}
.contact-form textarea {
  height: 72px;
  resize: vertical;
}
.form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form button {
  background: #c95e2b;
  color: white;
  border: 0;
  padding: 11px 70px;
  font-weight: 700;
}
.map-img {
  width: 100%;
  height: auto;
  margin-top: 70px;
  display: block;
}
@media (max-width: 1050px) {
  .main-nav {
    gap: 22px;
  }
  .donate-btn {
    padding: 13px 30px;
  }
  .story-copy p {
    font-size: 18px;
  }
  .story-copy h1,
  .story-copy h2 {
    font-size: 42px;
  }
  .contact-row {
    grid-template-columns: 130px 1fr;
  }
  .contact-row p {
    font-size: 23px;
  }
}
@media (max-width: 820px) {
  .container {
    width: min(100% - 34px, 1120px);
  }
  .site-header {
    min-height: 78px;
    padding: 14px 18px;
  }
  .logo {
    font-size: 15px;
  }
  .menu-toggle {
    display: block;
  }
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .main-nav.open {
    display: flex;
  }
  .header-actions {
    display: none;
  }
  .hero h1 {
    font-size: 34px;
    margin-bottom: 38px;
  }
  .image-grid,
  .vision-head,
  .stories-grid,
  .stats-grid,
  .footer-grid,
  .story-layout,
  .two-col,
  .partners-grid,
  .projects-grid,
  .education-gallery,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .image-grid img {
    height: 240px;
  }
  .vision h2,
  .news h2 {
    font-size: 30px;
  }
  .experience-pill {
    font-size: 28px;
  }
  .footer-grid {
    gap: 28px;
  }
  .copyright {
    text-align: left;
  }
  .story-copy h1,
  .story-copy h2 {
    font-size: 34px;
    margin-bottom: 24px;
  }
  .story-copy p,
  .about-intro,
  .partner-notes,
  .projects-page p {
    font-size: 15px;
  }
  .story-copy .founder {
    margin: 20px auto;
  }
  .grey-block {
    border-radius: 18px;
  }
  .partners-grid {
    gap: 25px;
  }
  .projects-grid {
    gap: 25px;
  }
  .education-gallery {
    gap: 20px;
  }
  .contact-row {
    grid-template-columns: 1fr;
    text-align: center;
    margin-bottom: 45px;
  }
  .contact-row p {
    font-size: 22px;
  }
  .form-two {
    grid-template-columns: 1fr;
  }
  .map-img {
    margin-top: 20px;
  }
}
@media (max-width: 520px) {
  .hero h1 {
    font-size: 28px;
  }
  .section-pad {
    padding: 34px 0;
  }
  .image-grid img {
    height: 190px;
  }
  .top-images,
  .bottom-images {
    gap: 20px;
  }
  .stats-grid {
    gap: 28px;
  }
  .footer {
    padding-bottom: 24px;
  }
  .contact-form button {
    width: 100%;
    padding: 12px;
  }
  .projects-page h1 {
    font-size: 22px;
  }
  .about-intro {
    line-height: 1.55;
  }
  .contact-row p {
    font-size: 19px;
  }
  .big-icon {
    font-size: 60px;
  }
  .pin {
    width: 76px;
    height: 76px;
    font-size: 45px;
  }
  .logo-mark {
    width: 24px;
    height: 24px;
    font-size: 9px;
  }
}


/* Video Popup Modal */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.video-modal iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    border: 0;
}

.video-close {
    position: absolute;
    top: -45px;
    right: 0;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #000;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    line-height: 38px;
    text-align: center;
}

.video-card,
.stories-grid h3 a {
    cursor: pointer;
}

.video-card:hover img {
    transform: scale(1.05);
    transition: 0.3s ease;
}

.stories-grid h3 a:hover {
    color: #ab3030;
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 100%;
    }

    .video-close {
        top: -50px;
        right: 10px;
    }
}