:root {
  --orange: #f47b20;
  --orange-dark: #c75508;
  --orange-soft: #fff0e4;
  --navy: #12233f;
  --blue: #246bfe;
  --blue-soft: #e9f1ff;
  --teal: #0fa3a6;
  --teal-soft: #e8fbfb;
  --green: #43a047;
  --green-soft: #eaf8ed;
  --purple: #7c3aed;
  --purple-soft: #f2ebff;
  --pink: #d946ef;
  --pink-soft: #fdeafd;
  --cream: #fffaf4;
  --white: #ffffff;
  --text: #20304a;
  --muted: #607089;
  --border: rgba(18, 35, 63, 0.12);
  --shadow: 0 20px 60px rgba(18, 35, 63, 0.12);
  --shadow-soft: 0 14px 40px rgba(18, 35, 63, 0.08);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(244, 123, 32, 0.14), transparent 32rem),
    radial-gradient(circle at 80% 20%, rgba(36, 107, 254, 0.11), transparent 26rem),
    linear-gradient(180deg, #fffaf5 0%, #ffffff 44%, #fff8f0 100%);
  line-height: 1.6;
}

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

a {
  color: inherit;
}


.top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}


.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  background: var(--navy);
  color: white;
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  z-index: 999;
}

.skip-link:focus {
  left: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--navy);
  min-width: 0;
}

.brand span {
  max-width: 310px;
  line-height: 1.1;
  font-size: 0.96rem;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow-soft);
  padding: 0.2rem;
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu a {
  text-decoration: none;
  font-weight: 750;
  font-size: 0.93rem;
  color: var(--text);
  padding: 0.7rem 0.85rem;
  border-radius: 999px;
  transition: 180ms ease;
}

.menu a:hover {
  background: var(--orange-soft);
  color: var(--orange-dark);
}

.menu .nav-cta {
  color: white;
  background: linear-gradient(135deg, var(--orange), #ff9f1c);
  box-shadow: 0 12px 24px rgba(244, 123, 32, 0.24);
}

.menu .nav-cta:hover {
  color: white;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--navy);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 1.25rem;
}

.section-pad {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5.5rem 1.4rem;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 3rem;
  align-items: center;
  overflow: hidden;
}

.hero-bg-decoration {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.5;
  pointer-events: none;
}

.hero-bg-decoration.one {
  width: 230px;
  height: 230px;
  background: rgba(244, 123, 32, 0.20);
  right: 10%;
  top: 14%;
}

.hero-bg-decoration.two {
  width: 160px;
  height: 160px;
  background: rgba(15, 163, 166, 0.17);
  left: 3%;
  bottom: 16%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  color: var(--orange-dark);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--pink), var(--teal));
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  color: var(--navy);
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-bottom: 1.35rem;
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
}

h3 {
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.hero-text {
  max-width: 690px;
  font-size: 1.08rem;
  color: #43546d;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.center-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.2rem;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  box-shadow: 0 10px 24px rgba(18, 35, 63, 0.10);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(18, 35, 63, 0.16);
}

.button.primary {
  background: linear-gradient(135deg, var(--orange), #ffb000);
  color: white;
}

.button.secondary {
  background: white;
  color: var(--navy);
  border: 1px solid var(--border);
}

.button.facebook {
  color: white;
  background: linear-gradient(135deg, #1877f2, #0a4faa);
}

.button.instagram {
  color: white;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.button.light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  border: 1px solid var(--border);
}

.button.large {
  min-width: 185px;
}

.hero-card {
  position: relative;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 239, 0.95)),
    radial-gradient(circle at top right, rgba(244, 123, 32, 0.18), transparent 17rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--orange), var(--pink), var(--teal), var(--blue));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.logo-frame {
  background: white;
  border-radius: 28px;
  padding: 1.2rem;
  box-shadow: inset 0 0 0 1px var(--border), 0 14px 34px rgba(18, 35, 63, 0.10);
}

.logo-showcase img {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
}

.logo-caption {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.4rem;
  text-align: center;
}

.logo-caption strong {
  font-size: 1.25rem;
  color: var(--navy);
}

.logo-caption span {
  color: var(--muted);
}

.stats {
  max-width: var(--max);
  margin: -1.5rem auto 0;
  padding: 0 1.4rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stats div {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.stats div::after {
  content: "";
  position: absolute;
  right: -2rem;
  top: -2rem;
  width: 6rem;
  height: 6rem;
  border-radius: 999px;
  background: rgba(244, 123, 32, 0.12);
}

.stats strong {
  display: block;
  color: var(--orange-dark);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.stats span {
  color: var(--muted);
  font-weight: 700;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: start;
}

.content-card,
.contact-form,
.donate-box {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 3vw, 2.35rem);
  box-shadow: var(--shadow-soft);
}

.colorful-card {
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, var(--orange), var(--purple), var(--teal)) border-box;
  border: 2px solid transparent;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.3rem;
}

.mission-grid article {
  background: linear-gradient(135deg, var(--orange-soft), #ffffff);
  border-radius: 22px;
  padding: 1.25rem;
  border: 1px solid var(--border);
}

.mission-grid article:nth-child(2) {
  background: linear-gradient(135deg, var(--blue-soft), #ffffff);
}

.soft-bg {
  position: relative;
  max-width: none;
  background:
    radial-gradient(circle at 13% 0%, rgba(244, 123, 32, 0.14), transparent 20rem),
    radial-gradient(circle at 90% 35%, rgba(124, 58, 237, 0.11), transparent 24rem),
    linear-gradient(180deg, #fff6ea 0%, #fff 100%);
}

.soft-bg > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  text-align: center;
  max-width: 880px;
  margin-bottom: 2.2rem;
}

.section-heading.narrow {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.cards,
.resource-grid,
.gallery-grid,
.donation-methods {
  display: grid;
  gap: 1rem;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.resource-card,
.gallery-card,
.donation-card {
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  min-height: 100%;
}

.card::before,
.resource-card::before,
.donation-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 7px;
  background: var(--orange);
}

.icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.65rem;
  margin-bottom: 1rem;
  background: var(--orange-soft);
}

.card p,
.resource-card p,
.donation-card p {
  color: var(--muted);
}

.card-note {
  font-size: 0.92rem;
  font-weight: 700;
}

.orange-card::before,
.orange-line::before,
.paypal-card::before { background: linear-gradient(90deg, var(--orange), #ffb000); }
.purple-card::before { background: linear-gradient(90deg, var(--purple), var(--pink)); }
.green-card::before,
.green-line::before,
.ath-card::before { background: linear-gradient(90deg, var(--green), var(--teal)); }
.blue-card::before,
.blue-line::before { background: linear-gradient(90deg, var(--blue), var(--teal)); }
.pink-card::before { background: linear-gradient(90deg, var(--pink), var(--orange)); }
.teal-card::before { background: linear-gradient(90deg, var(--teal), var(--blue)); }

.orange-card .icon { background: var(--orange-soft); }
.purple-card .icon { background: var(--purple-soft); }
.green-card .icon { background: var(--green-soft); }
.blue-card .icon { background: var(--blue-soft); }
.pink-card .icon { background: var(--pink-soft); }
.teal-card .icon { background: var(--teal-soft); }

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

.resource-card a {
  display: inline-flex;
  margin-top: 0.35rem;
  color: var(--orange-dark);
  font-weight: 900;
  text-decoration: none;
}

.resource-card a:hover {
  text-decoration: underline;
}

.impact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: center;
}

.impact-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.gallery-grid {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-card {
  min-height: 185px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}

.gallery-card span {
  font-size: 2.2rem;
  margin-bottom: auto;
}

.gallery-card strong {
  font-size: 1.2rem;
}

.gallery-card small {
  opacity: 0.9;
  font-weight: 700;
}

.gallery-orange { background: linear-gradient(135deg, var(--orange), #ffb000); }
.gallery-blue { background: linear-gradient(135deg, var(--blue), var(--teal)); }
.gallery-purple { background: linear-gradient(135deg, var(--purple), var(--pink)); }
.gallery-green { background: linear-gradient(135deg, var(--green), var(--teal)); }

.social-section {
  max-width: none;
  background:
    linear-gradient(135deg, rgba(18, 35, 63, 0.94), rgba(36, 107, 254, 0.84)),
    radial-gradient(circle at top left, rgba(244, 123, 32, 0.65), transparent 24rem);
  color: white;
}

.social-section .section-heading {
  margin-bottom: 0;
}

.social-section h2,
.social-section .eyebrow,
.social-section p,
.social-section .section-heading p:not(.eyebrow) {
  color: #ffffff;
  opacity: 1;
}

.social-section .eyebrow::before {
  background: white;
}

.donate {
  max-width: none;
  background: linear-gradient(180deg, #fff 0%, var(--orange-soft) 100%);
}

.donate-box {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, var(--orange), var(--pink), var(--teal)) border-box;
  border: 2px solid transparent;
}

.donation-methods {
  grid-template-columns: repeat(2, 1fr);
  text-align: left;
  margin: 2rem 0 1.5rem;
}

.ath-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: white;
  border-radius: 18px;
  padding: 0.9rem 1.2rem;
  font-size: 1.55rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 28px rgba(18, 35, 63, 0.18);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.contact-list li {
  display: grid;
  gap: 0.15rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 8px 22px rgba(18, 35, 63, 0.06);
}

.contact-list a {
  color: var(--orange-dark);
  font-weight: 850;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 850;
  color: var(--navy);
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
  background: #fff;
  transition: border 160ms ease, box-shadow 160ms ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(244, 123, 32, 0.8);
  box-shadow: 0 0 0 4px rgba(244, 123, 32, 0.13);
}

.form-note {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}

.footer {
  background: var(--navy);
  color: white;
  padding: 3rem 1.4rem;
  display: grid;
  gap: 1.5rem;
}

.footer > * {
  max-width: var(--max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.footer p {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.legal {
  font-size: 0.9rem;
}


@media (max-width: 1100px) {
  .brand span {
    max-width: 230px;
    font-size: 0.84rem;
  }
}

@media (max-width: 940px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .menu {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 82px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 0.8rem;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .menu.open {
    display: flex;
  }

  .menu a {
    border-radius: 14px;
  }

  .hero,
  .two-col,
  .impact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .stats,
  .cards.three,
  .resource-grid,
  .donation-methods {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .section-pad {
    padding: 4rem 1rem;
  }

  .nav {
    padding: 0.65rem 1rem;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .hero-actions,
  .center-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .mission-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    margin-top: 0;
  }
}
