/* =========================================================
   BETTER TOMORROW FUNDS
   MAIN SITE STYLES
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #202426;
  background: #fff;
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

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

:root {
  --ink: #202426;
  --blue: #dcecf1;
  --blue2: #4f879a;
  --blue3: #285d70;
  --cream: #faf8f1;
  --pink: #eabbb4;
  --yellow: #efe18a;
  --line: #e5e8e8;
  --muted: #687174;
  --max: 1180px;
}


/* =========================================================
   HEADER
   ========================================================= */

.header {
  height: 76px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}

.nav-shell {
  max-width: 1280px;
  height: 100%;
  margin: auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.brand img {
  width: 43px;
  height: 43px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  font-size: 14px;
  color: #5e6668;
  padding: 28px 0;
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: var(--ink);
}

.nav a.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--blue3);
}

.menu {
  display: none;
  border: 0;
  background: transparent;
  font-size: 25px;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
  max-width: var(--max);
  margin: auto;
  padding: 96px 30px;
}

.kicker {
  font-size: 11px;
  letter-spacing: 2.2px;
  font-weight: 700;
  color: var(--blue3);
  margin: 0 0 12px;
}


/* =========================================================
   HOMEPAGE HERO
   ========================================================= */

.home-hero {
  width: 100%;
  max-width: none;
  margin: 0;

  min-height: 680px;

  padding: 105px max(30px, calc((100vw - 1280px) / 2 + 70px)) 135px;

  display: grid;
  grid-template-columns: 1.02fr 0.98fr;

  align-items: center;
  gap: 50px;

  position: relative;
  overflow: hidden;

  background-color: #e9dcae;
  background-image: url("assets/IMG_2984.JPG");
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  background-attachment: scroll;

  border-radius:
    0 0 50% 50% /
    0 0 9% 9%;

  opacity: 0;
  transform: translateY(30px);

  animation:
    homeHeroReveal 1s cubic-bezier(0.22, 1, 0.36, 1)
    forwards;
}

.home-hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(250, 248, 241, 0.72) 0%,
      rgba(250, 248, 241, 0.40) 43%,
      rgba(250, 248, 241, 0.08) 76%,
      rgba(250, 248, 241, 0.02) 100%
    );

  pointer-events: none;
  z-index: 0;
}

.home-hero > * {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(52px, 6vw, 82px);
  line-height: 1.03;
  letter-spacing: -2.8px;
  margin: 0;
  max-width: 720px;
}

.hero-copy h1 span {
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 9px;
  text-underline-offset: 7px;
}

.hero-lead {
  font-size: 19px;
  color: #5d6668;
  max-width: 620px;
  margin: 28px 0 30px;
}

.hero-actions {
  display: flex;
  gap: 26px;
  align-items: center;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  transform: translateY(-3px);
  background: #000;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.15);
}

.text-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.text-link:hover {
  opacity: 0.65;
}

.text-link span {
  margin-left: 7px;
}


/* =========================================================
   HOMEPAGE HERO LOGO
   ========================================================= */

.hero-art {
  height: 420px;
  position: relative;

  background: transparent;

  border-radius: 0;
  overflow: visible;

  display: flex;
  align-items: center;
  justify-content: center;

  animation:
    heroArtReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1)
    0.15s both;
}

.hero-art img {
  width: 230px;
  height: 230px;
  object-fit: contain;

  animation:
    logoFloat 5s ease-in-out infinite,
    logoReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1)
    0.35s both;
}


/* =========================================================
   MISSION
   ========================================================= */

.mission {
  text-align: center;
}

.section-heading h2,
.focus h2,
.fundraising h2,
.closing h2,
.logo-meaning h2,
.transparency h2,
.team-card h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.13;
  font-size: clamp(39px, 4.5vw, 58px);
  margin: 0;
}

.mission-copy {
  max-width: 1030px;
  margin: 28px auto 0;
  font-size: 18px;
  line-height: 1.85;
  color: #4f585a;
}


/* =========================================================
   HOMEPAGE SCROLL REVEAL
   ========================================================= */

.home-page .mission,
.home-page .focus-intro,
.home-page .focus-card,
.home-page .fundraising,
.home-page .closing {
  opacity: 0;
  transform: translateY(45px);

  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .mission.visible,
.home-page .focus-intro.visible,
.home-page .focus-card.visible,
.home-page .fundraising.visible,
.home-page .closing.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================================
   WHERE WE FOCUS
   ========================================================= */

.focus {
  max-width: none;
  background: var(--cream);

  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  gap: 70px;
  align-items: start;

  padding: 100px 5vw;
}

.focus-intro {
  max-width: 360px;
  padding-top: 15px;
}

.focus-intro h2 {
  margin: 12px 0 22px;

  font-family: "Playfair Display", serif;

  font-size: clamp(42px, 4vw, 64px);

  line-height: 1.05;

  color: #202426;
}

.focus-intro p:last-child {
  font-size: 18px;
  line-height: 1.6;
  color: #687277;
}


/* =========================================================
   THREE HORIZONTAL CARDS
   ========================================================= */

.focus-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 28px;

  width: 100%;
}

.focus-card {
  background: #ffffff;

  border: 1px solid #e1e2df;

  border-radius: 20px;

  padding: 30px;

  min-height: 500px;

  box-shadow:
    0 8px 25px rgba(30, 40, 45, 0.05);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.focus-card:hover {
  transform: translateY(-7px);

  box-shadow:
    0 18px 40px rgba(30, 40, 45, 0.1);
}

.focus-card > div {
  height: 100%;
}

.focus-card > div > span {
  display: block;

  margin-bottom: 22px;

  font-size: 17px;

  font-weight: 700;

  letter-spacing: 0.08em;

  color: #28657a;
}

.focus-card h3 {
  margin: 0 0 20px;

  font-size: 25px;

  line-height: 1.2;

  color: #202426;
}

.focus-card p {
  margin: 0;

  font-size: 16px;

  line-height: 1.65;

  color: #687277;
}

.focus-card ul {
  margin: 20px 0;

  padding-left: 22px;
}

.focus-card li {
  margin-bottom: 12px;

  font-size: 16px;

  line-height: 1.55;

  color: #687277;
}


/* =========================================================
   FUNDRAISING
   ========================================================= */

.fundraising {
  background: var(--blue);

  padding: 82px 30px;

  position: relative;
  overflow: hidden;
}

.fundraising-inner {
  max-width: 1180px;

  margin: auto;

  display: grid;

  grid-template-columns: 1.05fr 0.95fr;

  gap: 90px;

  align-items: center;
}

.fundraising h2 {
  max-width: 650px;
}

.fundraising-inner > p {
  font-size: 18px;

  color: #425a62;

  max-width: 560px;
}


/* =========================================================
   FUNDRAISING STATS
   ========================================================= */

.fundraising-stats {
  max-width: 1180px;

  margin: 65px auto 0;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 24px;

  opacity: 1;
  transform: none;
}


/* =========================================================
   INDIVIDUAL FUNDRAISING STAT
   ========================================================= */

.fundraising-stat {
  background: rgba(255, 255, 255, 0.55);

  border: 1px solid rgba(40, 93, 112, 0.12);

  border-radius: 24px;

  padding: 34px 30px;

  min-width: 0;
  min-height: 170px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  opacity: 1;
  transform: translateY(0);

  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.fundraising-stat:hover {
  transform: translateY(-5px);

  background: rgba(255, 255, 255, 0.82);

  box-shadow:
    0 15px 35px rgba(40, 93, 112, 0.08);
}


/* =========================================================
   FUNDRAISING STAT REVEAL
   ========================================================= */

.fundraising.visible .fundraising-stats {
  opacity: 1;
  transform: translateY(0);
}

.fundraising.visible .fundraising-stat:nth-child(1) {
  transition-delay: 0.05s;
}

.fundraising.visible .fundraising-stat:nth-child(2) {
  transition-delay: 0.15s;
}

.fundraising.visible .fundraising-stat:nth-child(3) {
  transition-delay: 0.25s;
}


/* =========================================================
   FUNDRAISING NUMBER
   ========================================================= */

.stat-number {
  display: block;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(48px, 6vw, 72px);

  line-height: 1;

  letter-spacing: -2px;

  color: var(--ink);

  margin-bottom: 16px;

  font-variant-numeric: tabular-nums;
}


/* =========================================================
   FUNDRAISING LABEL
   ========================================================= */

.fundraising-stat p {
  margin: 0;

  max-width: 230px;

  font-size: 15px;

  line-height: 1.5;

  color: #526267;
}


/* =========================================================
   CLOSING / SUPPORT THE WORK
   ========================================================= */

.closing {
  padding-top: 85px;
  padding-bottom: 85px;
}

.closing-box {
  background: #f5eee7;

  border-radius: 28px;

  padding: 58px 65px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 40px;
}

.closing h2 {
  font-size: 43px;

  max-width: 730px;
}


/* =========================================================
   DONATION FORM
   ========================================================= */

.donation-area {
  max-width: 1180px;

  margin: 75px auto 0;

  padding-top: 65px;

  border-top:
    1px solid rgba(40, 93, 112, 0.18);

  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 70px;

  align-items: center;
}

.donation-copy {
  max-width: 500px;
}

.donation-copy h2 {
  font-family: "Playfair Display", Georgia, serif;

  font-size: clamp(40px, 4.5vw, 58px);

  line-height: 1.1;

  letter-spacing: -1.5px;

  margin: 0 0 22px;
}

.donation-copy > p:last-child {
  margin: 0;

  font-size: 17px;

  line-height: 1.75;

  color: #425a62;

  max-width: 500px;
}

.donation-frame {
  width: 100%;

  background: #fff;

  border: 1px solid rgba(40, 93, 112, 0.12);

  border-radius: 24px;

  overflow: hidden;

  box-shadow:
    0 15px 35px rgba(40, 93, 112, 0.08);
}

.donation-frame iframe {
  display: block;

  width: 100%;

  height: 600px;

  border: none;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  background: #202628;

  color: #fff;

  padding: 65px 30px 25px;
}

.footer-top {
  max-width: 1180px;

  margin: auto;

  display: grid;

  grid-template-columns:
    1.5fr 1fr 1.4fr;

  gap: 80px;
}

.footer-brand img {
  width: 48px;

  height: 48px;

  object-fit: contain;

  margin-bottom: 15px;
}

.footer h3 {
  font-size: 19px;

  margin: 0 0 5px;
}

.footer h4 {
  font-size: 11px;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: #a9cbd5;

  margin: 2px 0 15px;
}

.footer p {
  color: #aeb8ba;

  font-size: 13px;

  max-width: 380px;
}

.footer a {
  display: block;

  text-decoration: none;

  color: #d8ddde;

  font-size: 13px;

  margin: 7px 0;
}

.footer a:hover {
  color: #fff;
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
  width: 100%;
  max-width: var(--max);

  margin: 0 auto;

  padding: 24px 0 28px;

  border-top: 1px solid var(--line);

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 24px;
}

.footer-bottom p,
.footer-bottom span {
  margin: 0;

  color: var(--muted);

  font-size: 0.78rem;

  line-height: 1.5;
}

.footer-bottom p {
  max-width: 600px;
}

.footer-bottom small {
  margin: 0;

  color: var(--muted);

  font-size: 0.68rem;

  font-weight: 400;

  line-height: 1.4;
}

.footer-bottom > span {
  text-align: right;

  white-space: nowrap;
}


/* =========================================================
   ABOUT US
   ========================================================= */

.about-heading {
  max-width: 1180px;

  margin: auto;

  min-height: 350px;

  padding: 75px 30px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  background: var(--blue);

  border-radius:
    0 0 34px 34px;
}

.about-heading h1 {
  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(48px, 6vw, 76px);

  line-height: 1.05;

  margin: 0;

  max-width: 700px;
}

.about-heading img {
  width: 190px;

  height: 190px;

  object-fit: contain;

  margin-right: 70px;
}

.about-intro {
  text-align: center;

  padding-top: 82px;

  padding-bottom: 82px;
}

.about-intro p {
  font-size: 21px;

  line-height: 1.8;

  max-width: 920px;

  margin: auto;
}

.logo-meaning {
  max-width: none;

  background: var(--cream);

  display: grid;

  grid-template-columns:
    440px 1fr;

  gap: 90px;

  align-items: center;

  padding-left:
    max(30px, calc((100vw - 1120px) / 2));

  padding-right:
    max(30px, calc((100vw - 1120px) / 2));
}

.logo-display {
  height: 400px;

  background: #fff;

  border-radius: 28px;

  display: grid;

  place-items: center;

  border: 1px solid #e9e7df;
}

.logo-display img {
  width: 250px;

  height: 250px;

  object-fit: contain;
}

.logo-meaning > div:last-child {
  max-width: 650px;
}

.logo-meaning p:last-child,
.transparency p {
  font-size: 17px;

  line-height: 1.85;

  color: #515a5c;
}

.transparency {
  max-width: 950px;
}

.transparency-label {
  display: inline-block;

  padding: 7px 13px;

  background: var(--pink);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1.7px;

  margin-bottom: 15px;
}

.transparency p {
  max-width: 850px;
}


/* =========================================================
   FISCAL SPONSORSHIP
   ========================================================= */

.fiscal-sponsorship {
  max-width: none;

  background: var(--blue);

  padding-top: 95px;
  padding-bottom: 95px;
}

.fiscal-sponsorship-inner {
  max-width: 1120px;

  margin: auto;

  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 90px;

  align-items: start;
}

.fiscal-sponsorship-heading {
  max-width: 430px;
}

.fiscal-sponsorship-heading h2 {
  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(40px, 4.5vw, 58px);

  line-height: 1.1;

  letter-spacing: -1.5px;

  margin: 0;
}

.fiscal-sponsorship-content {
  max-width: 650px;
}

.fiscal-sponsorship-content p {
  margin: 0 0 24px;

  font-size: 17px;

  line-height: 1.85;

  color: #425a62;
}

.fiscal-sponsorship-content p:first-child {
  font-size: 19px;

  line-height: 1.75;

  color: var(--ink);
}

.fiscal-ein {
  margin-top: 35px;

  padding-top: 22px;

  border-top:
    1px solid rgba(40, 93, 112, 0.18);

  display: flex;

  align-items: center;

  gap: 16px;
}

.fiscal-ein span {
  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1.8px;

  text-transform: uppercase;

  color: var(--blue3);
}

.fiscal-ein strong {
  font-size: 15px;

  font-weight: 700;

  letter-spacing: 0.5px;

  color: var(--ink);
}


/* =========================================================
   TEAM PAGE
   ========================================================= */

.team {
  max-width: 950px;
}

.team-card {
  text-align: center;

  background: var(--cream);

  border-radius: 30px;

  padding: 70px 40px;
}

.team-card img {
  width: 120px;

  height: 120px;

  object-fit: contain;

  margin: 0 auto 20px;
}

.team-card p:not(.kicker) {
  max-width: 700px;

  margin: 20px auto;

  color: #5e6668;

  font-size: 18px;
}

.team-card .btn {
  margin-top: 10px;
}


/* =========================================================
   TEAM HERO
   ========================================================= */

.team-hero {
  max-width: 1180px;
  min-height: 410px;
  margin: 0 auto;

  padding: 75px 65px;

  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  align-items: center;
  gap: 60px;

  background: var(--blue);

  border-radius: 0 0 34px 34px;
}

.team-hero-content {
  max-width: 680px;
}

.team-hero h1 {
  font-family: "Playfair Display", Georgia, serif;

  font-size: clamp(52px, 6vw, 76px);

  line-height: 1.05;

  letter-spacing: -2px;

  margin: 0 0 25px;
}

.team-hero-content > p:last-child {
  max-width: 650px;

  margin: 0;

  font-size: 19px;

  line-height: 1.75;

  color: #4f5d61;
}

.team-hero-art {
  height: 260px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.team-hero-art img {
  width: 200px;
  height: 200px;

  object-fit: contain;
}


/* =========================================================
   TEAM MEMBERS
   ========================================================= */

.team-members {
  max-width: 1180px;

  padding-top: 100px;
  padding-bottom: 100px;
}

.team-members-heading {
  max-width: 650px;

  margin-bottom: 55px;
}

.team-members-heading h2 {
  font-family: "Playfair Display", Georgia, serif;

  font-size: clamp(40px, 4.5vw, 58px);

  line-height: 1.1;

  letter-spacing: -1.5px;

  margin: 0;
}

.team-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 30px;
}

.team-member {
  background: var(--cream);

  border: 1px solid #e7e5dd;

  border-radius: 26px;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-6px);

  box-shadow:
    0 18px 40px rgba(30, 40, 45, 0.09);
}

.team-member-photo {
  width: 100%;

  height: 390px;

  background: var(--blue);

  overflow: hidden;
}

.team-member-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.45s ease;
}

.team-member:hover .team-member-photo img {
  transform: scale(1.025);
}

.team-member-info {
  padding: 28px 30px 32px;
}

.team-member-info h3 {
  font-family: "Playfair Display", Georgia, serif;

  font-size: 31px;

  line-height: 1.15;

  margin: 0 0 8px;

  color: var(--ink);
}

.team-member-role {
  margin: 0;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 1.4px;

  text-transform: uppercase;

  color: var(--blue3);
}

.team-closing {
  padding-top: 0;
}

.team-closing-box {
  background: #f5eee7;

  border-radius: 28px;

  padding: 60px 65px;

  text-align: center;
}

.team-closing-box h2 {
  max-width: 800px;

  margin: 0 auto;

  font-family: "Playfair Display", Georgia, serif;

  font-size: clamp(35px, 4vw, 52px);

  line-height: 1.15;

  letter-spacing: -1px;
}


/* =========================================================
   HOMEPAGE ANIMATIONS
   ========================================================= */

@keyframes homeHeroReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroArtReveal {
  from {
    opacity: 0;
    transform: scale(0.94);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

  .nav {
    display: none;

    position: absolute;

    left: 0;
    right: 0;

    top: 75px;

    background: #fff;

    padding: 15px 25px 25px;

    box-shadow:
      0 15px 30px rgba(0, 0, 0, 0.08);

    flex-direction: column;

    align-items: flex-start;

    gap: 0;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 10px 0;
  }

  .nav a.active:after {
    bottom: 3px;
  }

  .menu {
    display: block;
  }


  .home-hero {
    grid-template-columns: 1fr;

    min-height: 720px;

    padding: 80px 35px 125px;

    background-position: 44% center;
    background-size: cover;

    border-radius:
      0 0 50% 50% /
      0 0 7% 7%;
  }

  .home-hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(250, 248, 241, 0.62) 0%,
        rgba(250, 248, 241, 0.30) 55%,
        rgba(250, 248, 241, 0.08) 100%
      );
  }

  .hero-art {
    height: 300px;
  }


  .focus {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .focus-intro {
    max-width: 600px;
  }

  .focus-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }


  .fundraising-inner {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .fundraising-stats {
    margin-top: 55px;
  }


  .donation-area {
    grid-template-columns: 1fr;

    gap: 40px;

    margin-top: 60px;

    padding-top: 55px;
  }

  .donation-copy {
    max-width: 700px;
  }


  .fiscal-sponsorship-inner {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .fiscal-sponsorship-heading {
    max-width: 650px;
  }


  .logo-meaning {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .logo-display {
    height: 330px;
  }

  .about-heading img {
    margin-right: 0;
  }


  .footer-top {
    grid-template-columns:
      1fr 1fr;

    gap: 45px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }


  .team-hero {
    grid-template-columns: 1fr;

    padding: 65px 45px;

    gap: 20px;
  }

  .team-hero-art {
    height: 180px;
  }

  .team-hero-art img {
    width: 150px;
    height: 150px;
  }
}


/* =========================================================
   MOBILE — 750px
   ========================================================= */

@media (max-width: 750px) {

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .focus {
    padding: 75px 22px;
  }

  .focus-grid {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .focus-card {
    min-height: auto;
  }


  /* FUNDRAISING */

  .fundraising {
    width: 100%;
    max-width: 100%;

    padding: 68px 22px;

    overflow: hidden;
  }

  .fundraising-inner {
    width: 100%;
    max-width: 700px;

    margin: 0 auto;

    display: block;

    min-width: 0;
  }

  .fundraising-inner > div,
  .fundraising-inner > p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .fundraising h2 {
    font-size: clamp(38px, 10vw, 52px);

    line-height: 1.08;

    overflow-wrap: anywhere;
  }

  .fundraising-inner > p {
    margin-top: 22px;

    font-size: 16px;

    line-height: 1.7;

    overflow-wrap: anywhere;
  }


  /* COUNTERS */

  .fundraising-stats {
    width: 100%;
    max-width: 100%;

    margin: 45px 0 0;

    display: grid;

    grid-template-columns:
      minmax(0, 1fr);

    gap: 16px;

    padding: 0;

    border: none;

    min-width: 0;
  }

  .fundraising-stat,
  .fundraising-stat:first-child {
    width: 100%;
    max-width: 100%;
    min-width: 0;

    min-height: 150px;

    padding: 28px 20px;

    border:
      1px solid rgba(40, 93, 112, 0.12);

    border-radius: 24px;

    background:
      rgba(255, 255, 255, 0.58);

    text-align: center;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    overflow: hidden;
  }

  .fundraising-stat:hover {
    transform: translateY(-3px);
  }

  .stat-number {
    display: block;

    width: 100%;
    max-width: 100%;

    font-size: 56px;

    line-height: 1;

    letter-spacing: -1px;

    margin: 0 0 12px;

    white-space: nowrap;

    overflow: hidden;

    font-variant-numeric: tabular-nums;
  }

  .fundraising-stat p {
    width: 100%;
    max-width: 280px;

    margin: 0;

    font-size: 14px;

    line-height: 1.45;

    color: #526267;

    overflow-wrap: anywhere;
  }


  /* =======================================================
     SUPPORT THE WORK / DONATION
     ======================================================= */

  .donation-area {
    width: 100%;
    max-width: 700px;

    margin: 55px auto 0;

    padding: 50px 0 0;

    border-top:
      1px solid rgba(40, 93, 112, 0.18);

    display: grid;

    grid-template-columns:
      minmax(0, 1fr);

    gap: 38px;

    align-items: start;

    min-width: 0;
  }

  .donation-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .donation-copy h2 {
    width: 100%;
    max-width: 100%;

    font-size: clamp(38px, 10vw, 56px);

    line-height: 1.06;

    letter-spacing: -1.2px;

    margin: 0 0 22px;

    overflow-wrap: anywhere;
  }

  .donation-copy > p:last-child {
    width: 100%;
    max-width: 100%;
    min-width: 0;

    margin: 0;

    font-size: 16px;

    line-height: 1.75;

    color: #425a62;

    overflow-wrap: anywhere;
  }

  .donation-frame {
    width: 100%;
    max-width: 100%;
    min-width: 0;

    margin: 0;

    padding: 0;

    border-radius: 20px;

    overflow: hidden;

    box-sizing: border-box;
  }

  .donation-frame iframe {
    display: block;

    width: 100%;
    max-width: 100%;

    height: 600px;

    min-width: 0;

    border: none;

    box-sizing: border-box;
  }


  /* =======================================================
     CLOSING
     ======================================================= */

  .closing {
    width: 100%;
    max-width: 100%;

    margin: 0;

    padding: 60px 22px;

    overflow: hidden;

    box-sizing: border-box;
  }

  .closing-box {
    width: 100%;
    max-width: 700px;

    margin: 0 auto;

    padding: 42px 26px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    gap: 28px;

    border-radius: 24px;

    box-sizing: border-box;

    overflow: hidden;
  }

  .closing-box > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .closing h2 {
    width: 100%;
    max-width: 100%;

    font-size: clamp(36px, 10vw, 50px);

    line-height: 1.07;

    letter-spacing: -1px;

    margin: 0;

    overflow-wrap: anywhere;
  }

  .closing .kicker {
    font-size: 10px;

    letter-spacing: 2px;
  }

  .closing .btn {
    width: 100%;

    max-width: 220px;

    text-align: center;
  }


  /* =======================================================
     ABOUT US
     ======================================================= */

  .about-heading {
    width: 100%;
    max-width: 100%;

    min-width: 0;

    margin: 0;

    min-height: auto;

    padding: 55px 22px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    gap: 30px;

    overflow: hidden;

    box-sizing: border-box;
  }

  .about-heading > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .about-heading h1 {
    width: 100%;
    max-width: 100%;
    min-width: 0;

    font-size: clamp(44px, 12vw, 64px);

    line-height: 1.02;

    letter-spacing: -1.5px;

    margin: 0;

    overflow-wrap: anywhere;

    word-break: normal;
  }

  .about-heading img {
    width: 110px;

    height: 110px;

    max-width: 110px;

    margin: 0 auto;

    align-self: center;
  }


  .about-intro {
    width: 100%;
    max-width: 100%;

    padding: 65px 22px;

    overflow: hidden;

    box-sizing: border-box;
  }

  .about-intro p {
    width: 100%;
    max-width: 700px;

    margin: 0 auto;

    font-size: 17px;

    line-height: 1.75;

    overflow-wrap: anywhere;
  }


  /* =======================================================
     LOGO MEANING
     ======================================================= */

  .logo-meaning {
    width: 100%;
    max-width: 100%;

    padding:
      68px 22px;

    display: flex;

    flex-direction: column;

    gap: 35px;

    overflow: hidden;

    box-sizing: border-box;
  }

  .logo-meaning > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .logo-display {
    width: 100%;
    max-width: 100%;

    height: 280px;

    min-width: 0;

    box-sizing: border-box;
  }

  .logo-display img {
    max-width: 180px;

    width: 180px;

    height: 180px;
  }

  .logo-meaning > div:last-child {
    width: 100%;
    max-width: 100%;
    min-width: 0;

    overflow: hidden;
  }

  .logo-meaning h2 {
    width: 100%;
    max-width: 100%;

    font-size: clamp(36px, 9vw, 52px);

    overflow-wrap: anywhere;
  }


  /* =======================================================
     TRANSPARENCY
     ======================================================= */

  .transparency {
    width: 100%;
    max-width: 100%;

    padding-left: 22px;

    padding-right: 22px;
  }

  .transparency p {
    width: 100%;
    max-width: 100%;

    font-size: 16px;

    overflow-wrap: anywhere;
  }


  /* =======================================================
     FISCAL SPONSORSHIP
     ======================================================= */

  .fiscal-sponsorship {
    width: 100%;
    max-width: 100%;

    padding: 70px 22px;

    margin: 0;

    overflow: hidden;

    box-sizing: border-box;
  }

  .fiscal-sponsorship-inner {
    width: 100%;
    max-width: 700px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
      minmax(0, 1fr);

    gap: 38px;

    align-items: start;

    min-width: 0;
  }

  .fiscal-sponsorship-heading,
  .fiscal-sponsorship-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .fiscal-sponsorship-heading h2 {
    width: 100%;
    max-width: 100%;

    font-size: clamp(38px, 10vw, 56px);

    line-height: 1.06;

    letter-spacing: -1.2px;

    margin: 0;

    overflow-wrap: anywhere;

    word-break: normal;
  }

  .fiscal-sponsorship-content {
    overflow: hidden;
  }

  .fiscal-sponsorship-content p {
    width: 100%;
    max-width: 100%;
    min-width: 0;

    margin: 0 0 24px;

    font-size: 16px;

    line-height: 1.75;

    color: #425a62;

    overflow-wrap: anywhere;

    word-break: normal;
  }

  .fiscal-sponsorship-content p:first-child {
    font-size: 17px;

    line-height: 1.75;

    color: var(--ink);
  }

  .fiscal-ein {
    width: 100%;
    max-width: 100%;

    margin-top: 30px;

    padding-top: 22px;

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 12px;

    overflow-wrap: anywhere;
  }


  /* =======================================================
     TEAM
     ======================================================= */

  .team-members {
    padding-top: 70px;

    padding-bottom: 70px;
  }

  .team-members-heading {
    margin-bottom: 35px;
  }

  .team-grid {
    grid-template-columns: 1fr;

    gap: 22px;
  }

  .team-member-photo {
    height: 360px;
  }

  .team-member-info {
    padding: 24px;
  }

  .team-member-info h3 {
    font-size: 28px;

    overflow-wrap: anywhere;
  }

  .team-closing-box {
    padding: 42px 25px;
  }


  /* =======================================================
     FOOTER
     ======================================================= */

  .footer-bottom {
    flex-direction: column;

    align-items: center;

    text-align: center;

    gap: 10px;

    padding:
      22px 20px 26px;
  }

  .footer-bottom p {
    max-width: 100%;
  }

  .footer-bottom small {
    font-size: 0.66rem;
  }

  .footer-bottom > span {
    text-align: center;

    white-space: normal;
  }


  /* =======================================================
     GENERAL MOBILE TEXT SAFETY
     ======================================================= */

  h1,
  h2,
  h3,
  h4,
  p,
  span,
  strong,
  a,
  li {
    overflow-wrap: anywhere;

    word-break: normal;
  }

  .section,
  .focus,
  .fundraising,
  .closing {
    min-width: 0;

    max-width: 100%;
  }

  .section > *,
  .focus > *,
  .fundraising > *,
  .closing > * {
    min-width: 0;

    max-width: 100%;
  }
}


/* =========================================================
   SMALL MOBILE — 600px
   ========================================================= */

@media (max-width: 600px) {

  .header {
    height: 68px;
  }

  .nav {
    top: 67px;
  }

  .nav-shell {
    padding: 0 20px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 38px;

    height: 38px;
  }

  .brand span {
    font-size: 14px;
  }


  .home-hero {
    min-height: 720px;

    padding:
      65px 22px 125px;

    gap: 25px;

    background-position:
      40% center;

    background-size: cover;

    border-radius:
      0 0 50% 50% /
      0 0 5% 5%;
  }

  .home-hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(250, 248, 241, 0.72) 0%,
        rgba(250, 248, 241, 0.42) 55%,
        rgba(250, 248, 241, 0.12) 100%
      );
  }

  .hero-copy h1 {
    font-size: 50px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-art {
    height: 250px;
  }

  .hero-art img {
    width: 180px;

    height: 180px;
  }


  .section {
    padding:
      68px 22px;
  }

  .mission-copy {
    font-size: 16px;
  }


  .focus {
    padding-left: 22px;

    padding-right: 22px;
  }


  .fundraising {
    padding:
      68px 22px;
  }

  .fundraising-inner {
    gap: 18px;
  }

  .fundraising-stats {
    margin-top: 40px;
  }

  .stat-number {
    font-size: 56px;
  }

  .fundraising-stat p {
    font-size: 13px;
  }


  /* DONATION */

  .donation-area {
    width: 100%;

    max-width: 100%;

    margin-top: 50px;

    padding-top: 45px;

    gap: 32px;

    grid-template-columns:
      minmax(0, 1fr);
  }

  .donation-copy h2 {
    font-size: 39px;

    line-height: 1.05;
  }

  .donation-copy > p:last-child {
    font-size: 16px;

    line-height: 1.75;
  }

  .donation-frame {
    width: 100%;

    max-width: 100%;

    border-radius: 18px;
  }

  .donation-frame iframe {
    width: 100%;

    height: 600px;
  }


  /* FISCAL SPONSORSHIP */

  .fiscal-sponsorship {
    padding:
      65px 22px;
  }

  .fiscal-sponsorship-inner {
    gap: 32px;
  }

  .fiscal-sponsorship-heading h2 {
    font-size: 39px;

    line-height: 1.05;
  }

  .fiscal-sponsorship-content p {
    font-size: 16px;

    line-height: 1.75;
  }

  .fiscal-sponsorship-content p:first-child {
    font-size: 17px;
  }


  /* CLOSING */

  .closing {
    padding:
      55px 22px;
  }

  .closing-box {
    padding:
      40px 24px;
  }

  .closing h2 {
    font-size: 39px;

    line-height: 1.05;
  }


  /* ABOUT */

  .about-heading {
    padding:
      55px 22px;
  }

  .about-heading h1 {
    font-size:
      clamp(43px, 12vw, 62px);

    line-height: 1.02;
  }

  .about-heading img {
    width: 110px;

    height: 110px;
  }

  .about-intro {
    padding:
      65px 22px;
  }

  .about-intro p {
    font-size: 17px;

    line-height: 1.75;
  }

  .logo-meaning {
    padding-left: 22px;

    padding-right: 22px;
  }

  .logo-display {
    height: 280px;
  }

  .logo-display img {
    width: 180px;

    height: 180px;
  }


  /* FOOTER */

  .footer-top {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .footer-bottom {
    display: flex;
  }


  .hero-actions {
    flex-wrap: wrap;
  }
}


/* =========================================================
   TEAM PAGE MOBILE — 650px
   ========================================================= */

@media (max-width: 650px) {

  .team-hero {
    min-height: 0;

    padding:
      55px 22px 45px;

    border-radius:
      0 0 28px 28px;
  }

  .team-hero h1 {
    font-size: 52px;

    letter-spacing: -1.5px;

    overflow-wrap: anywhere;
  }

  .team-hero-content > p:last-child {
    font-size: 16px;

    overflow-wrap: anywhere;
  }

  .team-hero-art {
    height: 140px;
  }

  .team-hero-art img {
    width: 120px;

    height: 120px;
  }
}


/* =========================================================
   VERY SMALL PHONES — 400px
   ========================================================= */

@media (max-width: 400px) {

  .home-hero {
    min-height: 700px;

    padding:
      55px 20px 115px;

    background-position:
      38% center;

    background-size: cover;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .hero-art {
    height: 220px;
  }

  .hero-art img {
    width: 155px;

    height: 155px;
  }


  .section {
    padding-left: 20px;

    padding-right: 20px;
  }


  .fundraising {
    padding-left: 20px;

    padding-right: 20px;
  }

  .fundraising-stats {
    margin-top: 38px;
  }

  .fundraising-stat {
    padding:
      26px 20px;

    min-height: 140px;
  }

  .stat-number {
    font-size: 52px;

    letter-spacing: -0.5px;
  }


  .donation-area {
    margin-top: 45px;

    padding-top: 40px;
  }

  .donation-copy h2 {
    font-size: 36px;
  }


  .fiscal-sponsorship {
    padding-left: 20px;

    padding-right: 20px;
  }

  .fiscal-sponsorship-heading h2 {
    font-size: 36px;
  }


  .closing {
    padding-left: 20px;

    padding-right: 20px;
  }

  .closing-box {
    padding:
      34px 22px;
  }

  .closing h2 {
    font-size: 34px;
  }


  .about-heading {
    padding-left: 20px;

    padding-right: 20px;
  }

  .about-heading h1 {
    font-size: 44px;

    letter-spacing: -1.5px;
  }

  .about-intro {
    padding-left: 20px;

    padding-right: 20px;
  }

  .logo-meaning {
    padding-left: 20px;

    padding-right: 20px;
  }

  .transparency {
    padding-left: 20px;

    padding-right: 20px;
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }

  .home-page .mission,
  .home-page .focus-intro,
  .home-page .focus-card,
  .home-page .fundraising,
  .home-page .closing {
    opacity: 1;

    transform: none;
  }

  .team-member,
  .team-member-photo img {
    transition: none;
  }
}


/* =========================================================
   FINAL GLOBAL OVERFLOW PROTECTION
   ========================================================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
