:root {
  --purple: #6420b5;
  --violet: #8c39d2;
  --blue: #0f67d4;
  --deep-blue: #074b9f;
  --teal: #1fa8b7;
  --ink: #14151a;
  --muted: #4d5260;
  --white: #ffffff;
  --soft: #f8f7fc;
  --gradient: linear-gradient(
    90deg,
    #6a1fba 0%,
    #9838dd 30%,
    #1268d4 68%,
    #1fa8b7 100%
  );
  --gradient-dark: linear-gradient(
    90deg,
    #431084 0%,
    #661cad 40%,
    #0758bd 100%
  );
  --shadow: 0 14px 40px rgba(63, 34, 102, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  color: var(--ink);
  background: #fff;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
}

.topbar {
  color: #fff;
  background: var(--gradient-dark);
}
.topbar-inner {
  min-height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  font-size: 0.83rem;
  letter-spacing: 0.04em;
}
.top-heart {
  font-size: 1.3rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #ece8f3;
  backdrop-filter: blur(12px);
}
.header-row {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
}
.brand-mark {
  width: 70px;
  height: 70px;
  border: 3px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--gradient) border-box;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.brand-mark img {
  width: 34px;
  height: 52px;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text small {
  font-weight: 900;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
}
.brand-text strong {
  margin-top: 5px;
  font-size: 1.45rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.88rem;
  font-weight: 800;
}
.nav a {
  position: relative;
  padding: 7px 0;
}
.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gradient);
}
.nav .donate {
  padding: 11px 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--gradient-dark);
}
.nav .donate::after {
  display: none;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--purple);
  font-size: 1.8rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 16% 28%,
      rgba(119, 33, 191, 0.16),
      transparent 27%
    ),
    linear-gradient(90deg, #f7f0ff 0%, #ffffff 38%, #f6f9ff 100%);
}
.hero-photo {
  position: absolute;
  top: 0;
  bottom: 0;

  left: 38%;
  right: 14%;

  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.08) 15%,
      rgba(255, 255, 255, 0.02) 85%,
      rgba(255, 255, 255, 0.15) 100%
    ),
    url("../img/hero-beach.jpg");

  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  background-color: #fff;

  max-width: 48%;
  overflow: hidden;
}
.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.84) 0 33%,
    transparent 47% 78%,
    rgba(255, 255, 255, 0.8) 93% 100%
  );
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.95fr 0.46fr;
  align-items: center;
  min-height: 360px;
}
.hero-message {
  position: relative;
  padding: 26px 0 22px;
}
.paint-stroke {
  position: absolute;
  left: -65px;
  width: 220px;
  height: 38px;
  opacity: 0.9;
  transform: rotate(-12deg);
  filter: blur(0.25px);
}
.paint-purple {
  top: 67px;
  background: linear-gradient(
    90deg,
    transparent,
    #7022c0 18%,
    #9540d5 72%,
    transparent
  );
}
.paint-blue {
  top: 124px;
  left: -28px;
  background: linear-gradient(
    90deg,
    transparent,
    #106fda 16%,
    #3498df 72%,
    transparent
  );
}
.hero h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(3.8rem, 6vw, 6.3rem);
  line-height: 0.75;
  color: var(--purple);
  letter-spacing: -0.035em;
}
.hero h1 .purple {
  color: var(--violet);
}
.hero h1 .blue {
  color: var(--blue);
}
.hero h1 .black {
  color: #111;
  font-size: 0.55em;
  margin-right: 0.05em;
}
.fund-name {
  margin-top: 18px;
  text-align: center;
  color: var(--purple);
  font-weight: 900;
  line-height: 1;
  font-size: 1.14rem;
}
.fund-name strong {
  display: inline-block;
  color: var(--deep-blue);
  font-size: 1.48rem;
}
.hero-pillars,
.footer-pillars {
  margin-top: 9px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-pillars span,
.footer-pillars span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-pillars b,
.footer-pillars b {
  color: var(--purple);
}
.cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: max-content;
  margin: 14px auto 0;
  padding: 10px 25px;
  border-radius: 8px;
  background: var(--gradient);
  color: #fff;
  font-weight: 900;
}
.cta span {
  font-size: 1.5rem;
}
.hero-tagline {
  justify-self: end;
  align-self: center;

  width: 260px;
  margin-right: 18px;

  text-align: center;
  transform: rotate(-2deg);

  position: relative;
  z-index: 3;
}
.heart-outline {
  color: var(--purple);
  font-size: 3.2rem;
  line-height: 1;
}
.hero-tagline strong,
.hero-tagline span {
  display: block;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  line-height: 0.78;
}
.hero-tagline strong {
  font-size: 2.55rem;
  color: var(--purple);
}
.hero-tagline span {
  margin-top: 8px;
  font-size: 2.15rem;
  color: var(--deep-blue);
}

.sweep-strip {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.sweep-strip::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 50%;
  height: 36px;
  transform: translateY(-50%) rotate(-0.8deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(130, 39, 198, 0.22) 10%,
    rgba(35, 108, 215, 0.19) 60%,
    rgba(30, 168, 183, 0.18) 88%,
    transparent
  );
  border-radius: 50%;
}
.sweep-inner {
  position: relative;
  z-index: 1;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}
.mini-heart {
  font-size: 2.6rem;
  color: var(--purple);
}
.sweep-words {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-weight: 700;
  font-size: 2.6rem;
}
.sweep-words span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sweep-words b {
  color: var(--blue);
  font-size: 1.3rem;
}

.pillars {
  border-top: 1px solid #eee9f5;
  border-bottom: 1px solid #eee9f5;
  background: #fff;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pillar {
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 15px;
  align-items: center;
  border-right: 1px solid #dfd7ed;
}
.pillar:last-child {
  border-right: 0;
}
.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
}
.ribbon-icon img {
  width: 31px;
  height: 49px;
  object-fit: contain;
}
.symbol {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--purple);
}
.hope-symbol {
  color: var(--teal);
}
.pillar h3 {
  margin: 0;
  text-transform: uppercase;
  font-size: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pillar p {
  margin: 4px 0 0;
  color: #3f4450;
  line-height: 1.35;
  font-size: 0.87rem;
}

.about {
  padding: 28px 0 18px;
  background: linear-gradient(180deg, #fff, #fbf9ff);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.96fr 0.9fr;
  gap: 24px;
  align-items: center;
}
.about-photo img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: var(--shadow);
}
.about-copy h2 {
  margin: 0 0 10px;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 2.55rem;
  line-height: 0.82;
  color: var(--deep-blue);
}
.about-copy h2 span {
  color: var(--purple);
}
.about-copy p {
  margin: 0 0 10px;
  line-height: 1.45;
  color: #333846;
  font-size: 0.91rem;
}
.outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 8px 17px;
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--gradient) border-box;
  border-radius: 999px;
  color: var(--purple);
  font-weight: 900;
  font-size: 0.8rem;
}
.outline-btn span {
  font-size: 1.2rem;
}

.hope-card {
  position: relative;
  min-height: 210px;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(115, 30, 182, 0.98),
    rgba(7, 82, 174, 0.94)
  );
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: center;
}
.hope-card::before,
.hope-card::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 38px;
  transform: rotate(-12deg);
  background: rgba(255, 255, 255, 0.1);
}
.hope-card::before {
  left: -45px;
  bottom: 36px;
}
.hope-card::after {
  left: -5px;
  bottom: 12px;
  background: rgba(53, 162, 220, 0.22);
}
.hope-card-ribbon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}
.hope-card-ribbon img {
  width: 108px;
  max-height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 14px 15px rgba(0, 0, 0, 0.16));
}
.hope-card-copy {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  padding-right: 18px;
}
.hope-card-copy strong {
  display: block;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 2.55rem;
  line-height: 0.76;
}
.hope-card-copy span {
  display: block;
  font-size: 2.2rem;
  margin-top: 10px;
}

.story-cards {
  padding: 0 0 24px;
  background: #fbf9ff;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  min-height: 128px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  border: 1px solid #d8d3ea;
  border-radius: 13px;
  background: #fff;
}
.card img {
  width: 100%;
  height: 100%;
  min-height: 128px;
  object-fit: cover;
}
.card-copy {
  padding: 13px 14px;
}
.card h3 {
  margin: 0 0 5px;
  text-transform: uppercase;
  font-size: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.card p {
  margin: 0 0 10px;
  font-size: 0.82rem;
  line-height: 1.35;
}
.card a {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--gradient);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer {
  color: #fff;
  background: var(--gradient-dark);
}
.footer-grid {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
.footer-site {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.28rem;
}
.footer-ribbon {
  width: 36px;
  height: 48px;
  display: grid;
  place-items: center;
}
.footer-ribbon img {
  width: 28px;
  height: 44px;
  object-fit: contain;
}
.footer-motto {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-motto .heart-outline {
  font-size: 2.2rem;
  color: #fff;
}
.footer-motto div {
  display: flex;
  flex-direction: column;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  line-height: 0.92;
  font-size: 1.48rem;
}
.footer-motto strong {
  font-weight: 700;
}
.footer-pillars {
  margin: 0;
  font-size: 0.72rem;
  justify-content: flex-end;
}
.footer-pillars span {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, #f1c7ff, #75c8ff, #71e1df);
  -webkit-background-clip: text;
  background-clip: text;
}
.footer-pillars b {
  color: #fff;
}

@media (max-width: 1020px) {
  .menu-toggle {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 18px 22px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    padding: 12px 7px;
    border-bottom: 1px solid #eee;
  }
  .nav a::after {
    display: none !important;
  }
  .nav .donate {
    margin-top: 9px;
    text-align: center;
    border-bottom: 0;
  }

  .hero-photo {
    inset: 0 0 0 38%;
  }
  .hero-wash {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.9) 0 42%,
      rgba(255, 255, 255, 0.05) 58% 100%
    );
  }
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .hero-tagline {
    display: none;
  }
  .hero-spacer {
    display: block;
  }
  .sweep-words {
    font-size: 2rem;
  }
  .pillar-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pillar:nth-child(2) {
    border-right: 0;
  }
  .pillar:nth-child(-n + 2) {
    border-bottom: 1px solid #dfd7ed;
  }
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hope-card {
    grid-column: 1/-1;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 14px 0;
  }
  .footer-site,
  .footer-motto,
  .footer-pillars {
    justify-self: center;
    justify-content: center;
  }
}

@media (max-width: 660px) {
  .wrap {
    width: min(100% - 20px, 1180px);
  }
  .topbar-inner {
    font-size: 0.7rem;
  }
  .header-row {
    min-height: 76px;
  }
  .brand-mark {
    width: 54px;
    height: 54px;
  }
  .brand-mark img {
    width: 27px;
    height: 42px;
  }
  .brand-text small {
    font-size: 0.6rem;
  }
  .brand-text strong {
    font-size: 1rem;
  }
  .nav {
    top: 76px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 0;
  }
  .hero-photo {
    position: absolute;
    top: 0;
    bottom: 0;

    left: 38%;
    right: 14%;

    background-image:
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0.08) 15%,
        rgba(255, 255, 255, 0.02) 85%,
        rgba(255, 255, 255, 0.15) 100%
      ),
      url("../img/hero-beach.jpg");

    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    background-color: #fff;

    max-width: 48%;
    overflow: hidden;
  }
  .hero {
    overflow: hidden;
  }
  .hero-wash {
    display: none;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .hero-message {
    width: 100%;
    text-align: center;
    padding: 34px 0 18px;
    order: 1;
  }
  .hero-spacer {
    display: none;
  }
  .hero h1 {
    font-size: clamp(3.5rem, 18vw, 5rem);
  }
  .paint-purple {
    top: 78px;
  }
  .paint-blue {
    top: 135px;
  }
  .hero-pillars {
    font-size: 0.75rem;
  }
  .fund-name {
    font-size: 1rem;
  }
  .fund-name strong {
    font-size: 1.27rem;
  }

  .sweep-inner {
    min-height: 62px;
    gap: 8px;
  }
  .mini-heart {
    font-size: 1.65rem;
  }
  .sweep-words {
    gap: 7px;
    font-size: 1.35rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .sweep-words b {
    font-size: 0.85rem;
  }

  .pillar {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4px;
    padding: 18px 10px;
  }
  .icon {
    margin: auto;
  }
  .pillar p {
    font-size: 0.78rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .about-photo img {
    height: 190px;
  }
  .about-copy {
    text-align: center;
  }
  .about-copy h2 {
    font-size: 2.25rem;
  }
  .hope-card {
    min-height: 195px;
  }

  .card {
    grid-template-columns: 1fr;
  }
  .card img {
    height: 165px;
  }
  .footer-motto {
    flex-direction: column;
  }
}
