:root {
  --blue-950: #061b50;
  --blue-900: #082b7a;
  --blue-700: #1048b5;
  --gold-600: #c88b0b;
  --gold-400: #e6b936;
  --gold: #e6b936;
  --sky: #dbeafe;
  --mint: #dcfce7;
  --blush: #fff1f2;
  --sun: #fef3c7;
  --cream: #fffaf0;
  --paper: #f6f8fc;
  --white: #ffffff;
  --ink: #17213b;
  --muted: #66718a;
  --line: #dfe6f1;
  --green: #128c4a;
  --shadow: 0 18px 50px rgba(6, 27, 80, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
.brand span {
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem clamp(1rem, 4vw, 4.5rem);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(8, 43, 122, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--blue-900);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}

.brand span {
  max-width: 16rem;
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a,
.nav-group > button {
  min-height: 2.4rem;
  padding: 0.62rem 0.8rem;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: #233150;
  font-size: 0.9rem;
  font-weight: 800;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
}

.site-nav a:hover,
.nav-group:hover > button,
.nav-group:focus-within > button {
  background: #edf3ff;
  color: var(--blue-900);
}

.nav-group {
  position: relative;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  z-index: 60;
  display: none;
  min-width: 13rem;
  padding: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(6, 27, 80, 0.16);
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  display: grid;
}

.nav-menu a {
  border-radius: 8px;
}

.menu-toggle {
  display: none;
  min-height: 2.35rem;
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-900);
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: calc(100vh - 5.2rem);
  display: grid;
  align-content: end;
  gap: 1rem;
  padding: clamp(1.1rem, 4vw, 4rem);
  overflow: hidden;
  color: var(--white);
  background: var(--blue-950);
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 27, 80, 0.93), rgba(6, 27, 80, 0.68) 48%, rgba(6, 27, 80, 0.15)),
    linear-gradient(0deg, rgba(6, 27, 80, 0.78), transparent 58%);
}

.hero-content,
.hero-stats {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(760px, 100%);
  padding-top: 5rem;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--gold-400);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(2.7rem, 6.8vw, 6.7rem);
  line-height: 0.95;
}

.hero-content p:not(.eyebrow) {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.87);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: #181100;
  box-shadow: 0 14px 30px rgba(200, 139, 11, 0.28);
}

.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
}

.secondary.dark {
  color: var(--blue-900);
  border-color: rgba(8, 43, 122, 0.22);
  background: #edf3ff;
}

.whatsapp {
  background: var(--green);
  color: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  width: min(820px, 100%);
}

.hero-stats article {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
}

.hero-stats strong {
  display: block;
  color: #ffe7a2;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.section,
.impact-band,
.contact-section {
  padding: clamp(3.4rem, 7vw, 6.5rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 1.7rem;
}

h2 {
  margin-bottom: 0.85rem;
  color: var(--blue-900);
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: 1.04;
}

h3 {
  color: var(--blue-900);
}

.section-heading p,
.section-copy p,
.program-grid p,
.process-list p,
.impact-grid p,
.accountability-grid p,
.team-card span,
.gallery-card figcaption,
.contact-section p,
.impact-detail p,
.outcome-grid p,
.school-notes p {
  color: var(--muted);
  line-height: 1.72;
}

.about-grid,
.school-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  background: var(--white);
}

.programs-section,
.process-section,
.outcomes-section {
  background: #eef4ff;
}

.program-grid,
.accountability-grid,
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.program-grid article,
.accountability-grid article,
.outcome-grid article {
  min-height: 12rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(6, 27, 80, 0.06);
}

.program-grid h3,
.accountability-grid h3,
.outcome-grid h3,
.process-list h3 {
  margin-bottom: 0.45rem;
  font-size: 1.18rem;
}

.kit-section {
  background: var(--cream);
}

.kit-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.2rem;
  align-items: end;
  margin-bottom: 1.4rem;
}

.kit-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.kit-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
}

.kit-grid span {
  min-height: 3.15rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 0.82rem;
  border: 1px solid rgba(8, 43, 122, 0.1);
  border-radius: 8px;
  background: var(--white);
  color: #26324d;
  font-size: 0.93rem;
  font-weight: 850;
}

.kit-grid b {
  min-width: 1.8rem;
  color: var(--gold-600);
  font-size: 0.76rem;
  font-family: "Manrope", Arial, sans-serif;
}

.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 1rem;
}

.gallery-card {
  position: relative;
  min-height: 18rem;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #dfe6f1;
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
}

.gallery-large {
  grid-row: span 2;
}

.gallery-large img {
  min-height: 37rem;
}

.gallery-card figcaption {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  margin: 0;
  padding: 0.8rem;
  border-radius: 8px;
  color: var(--white);
  background: rgba(6, 27, 80, 0.76);
  backdrop-filter: blur(12px);
}

.process-list {
  display: grid;
  gap: 0.8rem;
}

.process-list article {
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.process-list span {
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--blue-900);
  color: #ffe7a2;
  font-weight: 900;
}

.impact-band,
.page-hero {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 27, 80, 0.96), rgba(16, 72, 181, 0.91)),
    url("assets/hero-school-shoes.png") center/cover;
}

.page-hero {
  min-height: 62vh;
  display: flex;
  align-items: end;
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 5vw, 5rem);
}

.page-hero > div {
  width: min(780px, 100%);
}

.page-hero h1,
.impact-band h2,
.page-hero p:not(.eyebrow),
.impact-band .section-heading p {
  color: var(--white);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.impact-grid article {
  min-height: 14rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.impact-grid strong {
  color: #ffe7a2;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
}

.impact-grid h3 {
  margin: 1rem 0 0.45rem;
  color: var(--white);
  font-size: 1.18rem;
}

.impact-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.accountability-section,
#team,
.contact-section {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(6, 27, 80, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: center top;
  background: #edf3ff;
}

.team-card div {
  padding: 1rem;
}

.team-card p {
  margin-bottom: 0.35rem;
  color: var(--gold-600);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.16rem;
}

.impact-detail {
  display: grid;
  gap: 1rem;
  background: var(--white);
}

.impact-page {
  background: #061b50;
}

.impact-page .impact-detail {
  background:
    linear-gradient(135deg, rgba(6, 27, 80, 0.96), rgba(16, 72, 181, 0.92)),
    url("assets/gallery-kit.png") center/cover;
}

.impact-page .impact-detail article {
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.impact-page .impact-detail span,
.impact-page .impact-detail h2 {
  color: #ffe7a2;
}

.impact-page .impact-detail p {
  color: rgba(255, 255, 255, 0.82);
}

.impact-page .outcomes-section {
  background: linear-gradient(180deg, #fffaf0 0%, #eef4ff 100%);
}

.impact-page .outcome-grid article {
  border-top: 5px solid var(--gold-400);
  background: var(--white);
}

.impact-page .school-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 240, 0.94)),
    radial-gradient(circle at 80% 20%, rgba(230, 185, 54, 0.3), transparent 32%);
}

.impact-page .contact-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
  border-top: 0;
}

.impact-page .contact-section h2,
.impact-page .contact-section p:not(.eyebrow) {
  color: var(--white);
}

.impact-stack {
  display: grid;
  gap: 1.25rem;
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.55rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
}

.impact-stack span {
  display: block;
}

.impact-stack b {
  font: inherit;
}

.impact-stack span:last-child {
  padding-left: 0.3rem;
  border-left: 2px solid currentColor;
}


.impact-detail article {
  display: grid;
  grid-template-columns: 5rem 0.8fr 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.impact-detail span {
  color: var(--gold-600);
  font-weight: 900;
}

.impact-detail h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 3rem);
}

.school-notes p {
  margin-bottom: 1rem;
}

.publication-hero {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem);
  background: linear-gradient(135deg, #f7fbff 0%, #fff9ea 100%);
}

.publication-hero h1 {
  max-width: 13ch;
  color: var(--blue-900);
  font-size: clamp(2.5rem, 5.4vw, 5.8rem);
}

.publication-hero p:not(.eyebrow) {
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.75;
}

.publication-hero figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.publication-hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.publication-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  background: var(--white);
}

.case-publication-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  background: var(--white);
}

.publication-label {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.publication-label h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.publication-label span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-weight: 800;
}

.publication-body {
  padding: 1.4rem;
  border-left: 4px solid var(--gold-400);
  background: #f7f9fd;
}

.publication-body p {
  color: #3d4863;
  font-size: 1.03rem;
  line-height: 1.9;
}

.publication-body a {
  color: var(--blue-700);
  font-weight: 900;
}

.position-section,
.themes-section {
  background: #eef4ff;
}

.notice-section {
  background: var(--white);
}

.position-grid,
.theme-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.theme-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.position-grid article,
.theme-list article {
  min-height: 12rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(6, 27, 80, 0.06);
}

.position-grid p,
.theme-list p {
  color: var(--muted);
  line-height: 1.72;
}

.collaborations-section {
  background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
}

.sponsors-section {
  background: var(--cream);
}

.volunteer-section {
  background: var(--white);
}

.collab-grid,
.sponsor-grid,
.volunteer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.collab-grid article,
.sponsor-grid article,
.volunteer-grid article {
  min-height: 12rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(6, 27, 80, 0.06);
}

.sponsor-grid strong {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--gold-600);
  font-size: 0.82rem;
  font-weight: 900;
}

.collab-grid p,
.sponsor-grid p,
.volunteer-grid p {
  color: var(--muted);
  line-height: 1.72;
}

.collab-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
}

.form-section {
  background: #eef4ff;
}

.forms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.application-grid a {
  min-height: 11rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(6, 27, 80, 0.06);
}

.application-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.single-form-section {
  background: #eef4ff;
}

.single-form-section .hsf-form {
  max-width: 900px;
  margin: 0 auto;
}

.form-page-hero {
  min-height: 50vh;
}

.donate-hero {
  background:
    linear-gradient(135deg, rgba(6, 27, 80, 0.94), rgba(16, 72, 181, 0.86)),
    url("assets/gallery-shoes.png") center/cover;
}

.donate-options,
.registration-section,
.pillars-section {
  background: var(--white);
}

.donate-grid,
.registration-grid,
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

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

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

.donate-card,
.registration-grid article,
.pillar-grid article {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcff;
  box-shadow: 0 10px 28px rgba(6, 27, 80, 0.06);
}

.bank-card {
  background: var(--cream);
}

.bank-details {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0;
}

.bank-details div {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(8, 43, 122, 0.12);
}

.bank-details dt {
  color: var(--muted);
  font-weight: 800;
}

.bank-details dd {
  margin: 0.2rem 0 0;
  color: var(--blue-900);
  font-size: 1.1rem;
  font-weight: 900;
}

.bank-note,
.donate-card p,
.registration-grid p,
.pillar-grid p {
  color: var(--muted);
  line-height: 1.72;
}

.pillar-grid strong {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--gold-600);
  font-weight: 900;
}

.hsf-form {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-title {
  margin: 0;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.form-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcff;
}

.form-group legend {
  padding: 0 0.4rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hsf-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--blue-900);
  font-weight: 900;
}

.hsf-form input,
.hsf-form select,
.hsf-form textarea {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  font: inherit;
  background: #fbfcff;
}

.hsf-form textarea {
  resize: vertical;
}

.hsf-form .form-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-wide,
.form-submit {
  width: 100%;
}

.form-submit {
  border: 0;
  cursor: pointer;
}

.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}

.floating-actions a {
  width: 3.85rem;
  height: 3.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(6, 27, 80, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.floating-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(6, 27, 80, 0.26);
}

.floating-actions svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: currentColor;
}

.floating-actions span {
  font-size: 0.85rem;
  font-weight: 900;
}

.float-donate,
.float-whatsapp {
  grid-template-columns: auto auto;
  gap: 0.45rem;
}

.float-donate {
  width: 8.2rem !important;
  color: #1d1500;
  background: linear-gradient(135deg, #f4ca4c, var(--gold-600));
}

.float-whatsapp {
  color: var(--white);
  background: var(--green);
  width: 3.85rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1rem 5rem;
  color: var(--muted);
  text-align: center;
  background: #eef3fb;
}

.site-footer img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1080px) {
  .program-grid,
  .accountability-grid,
  .outcome-grid,
  .team-grid,
  .kit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .impact-grid,
  .gallery-grid,
  .kit-layout,
  .publication-hero,
  .publication-feature,
  .case-publication-section,
  .position-grid,
  .collab-grid,
  .sponsor-grid,
  .volunteer-grid,
  .forms-grid,
  .application-grid,
  .donate-grid,
  .registration-grid,
  .pillar-grid,
  .theme-list {
    grid-template-columns: 1fr;
  }

  .gallery-large img {
    min-height: 23rem;
  }
}

@media (max-width: 780px) {
  .site-header {
    align-items: flex-start;
  }

  .brand img {
    width: 3.4rem;
    height: 3.4rem;
  }

  .brand span {
    max-width: 12rem;
    font-size: 0.94rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    top: 4.8rem;
    left: 0;
    right: 0;
    bottom: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 4.8rem);
    overflow-y: auto;
    padding: 0.85rem 1rem 1.1rem;
    background: #ffffff !important;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(6, 27, 80, 0.14);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 8px;
    background: #ffffff;
  }

  .nav-group {
    position: static;
  }

  .nav-group > button {
    width: 100%;
    border-radius: 8px;
    text-align: left;
    background: #ffffff;
  }

  .nav-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 0 0.9rem;
    border: 0;
    box-shadow: none;
  }

  .site-nav a:hover {
    background: #edf3ff;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(6, 27, 80, 0.94), rgba(6, 27, 80, 0.7) 50%, rgba(6, 27, 80, 0.52));
  }

  .hero-stats,
  .about-grid,
  .impact-detail article,
  .school-section,
  .publication-hero,
  .publication-feature,
  .case-publication-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .publication-label {
    position: static;
  }

  .contact-actions .button {
    width: 100%;
  }

}

.upcoming-event-section {
  background: #f7fbff;
}

.event-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.1fr) minmax(280px, 0.75fr);
  gap: 1.4rem;
  align-items: stretch;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(9, 36, 92, 0.1);
}

.event-photo {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #dfe9f7;
}

.event-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.event-copy h2 {
  margin-bottom: 0.8rem;
}

.event-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.4rem 0;
}

.event-details div,
.countdown-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcff;
}

.event-details div {
  padding: 0.9rem;
}

.event-details dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-details dd {
  margin: 0.25rem 0 0;
  color: var(--blue-900);
  font-weight: 900;
}

.event-address {
  grid-column: 1 / -1;
}

.event-schedule {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 1.4rem;
}

.event-schedule article {
  padding: 0.9rem;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: #f6f9ff;
}

.event-schedule span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-schedule h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: 1rem;
}

.event-schedule p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-weight: 800;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.countdown-card {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.countdown-grid span {
  display: grid;
  gap: 0.2rem;
  min-height: 6.4rem;
  place-items: center;
  padding: 0.9rem 0.5rem;
  border-radius: 8px;
  background: var(--blue-900);
  color: #ffffff;
  text-align: center;
}

.countdown-grid strong {
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1;
}

.countdown-grid small {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown-status {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.thank-you-section {
  min-height: calc(100vh - 88px);
  display: grid;
  place-items: center;
  padding: clamp(2rem, 6vw, 5rem);
  background: #f7fbff;
}

.thank-you-card {
  width: min(720px, 100%);
  padding: clamp(1.4rem, 5vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(9, 36, 92, 0.12);
  text-align: center;
}

.success-mark {
  display: grid;
  width: 6rem;
  height: 6rem;
  place-items: center;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: #16a34a;
  color: #ffffff;
  box-shadow: 0 16px 35px rgba(22, 163, 74, 0.3);
}

.success-mark svg {
  width: 3.6rem;
  height: 3.6rem;
  fill: currentColor;
}

.thank-you-card h1 {
  margin-bottom: 0.9rem;
  color: var(--blue-900);
}

.thank-you-card p:not(.eyebrow) {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.goal-section,
.testimonials-section {
  background: #ffffff;
}

.updates-section,
.social-section {
  background: #f7fbff;
}

.goal-panel {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcff;
}

.goal-panel div:not(.goal-progress) {
  display: grid;
  gap: 0.2rem;
}

.goal-panel strong {
  color: var(--blue-900);
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1;
}

.goal-panel span {
  color: var(--muted);
  font-weight: 900;
}

.goal-progress {
  height: 1.2rem;
  overflow: hidden;
  border-radius: 999px;
  background: #dce7f6;
}

.goal-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #16a34a;
}

.goal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.updates-grid,
.testimonial-grid,
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.updates-grid article,
.testimonial-grid blockquote,
.social-grid a {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.updates-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.updates-grid article div,
.testimonial-grid blockquote,
.social-grid a {
  padding: 1rem;
}

.updates-grid span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.updates-grid h3,
.social-grid h3 {
  margin: 0.35rem 0;
  color: var(--blue-900);
}

.updates-grid p,
.social-grid p {
  margin: 0;
  color: var(--muted);
}

.testimonial-grid blockquote {
  margin: 0;
  display: grid;
  align-content: space-between;
  gap: 1rem;
}

.testimonial-grid p {
  margin: 0;
  color: var(--blue-900);
  font-size: 1.05rem;
  font-weight: 800;
}

.testimonial-grid cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 900;
}

.social-grid a {
  color: inherit;
  text-decoration: none;
  position: relative;
  display: grid;
  min-height: 13rem;
  align-content: space-between;
  border: 2px solid rgba(8, 43, 122, 0.22);
  box-shadow: 0 12px 26px rgba(9, 36, 92, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.social-grid a:hover {
  transform: translateY(-3px);
  border-color: var(--blue-700);
  box-shadow: 0 22px 42px rgba(9, 36, 92, 0.18);
}

.social-grid a::after {
  content: ">";
  position: absolute;
  right: 1rem;
  top: 1rem;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-900);
  color: #ffffff;
  font-weight: 900;
}

.social-grid a span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 2.7rem;
  margin-top: 1rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: var(--blue-900);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(8, 43, 122, 0.2);
}

.social-grid a:hover span {
  background: var(--gold-600);
  color: #181100;
}

.quick-path-section {
  background: linear-gradient(135deg, #fffaf0 0%, #eef4ff 58%, #dcfce7 100%);
}

.quick-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.quick-path-grid a {
  display: grid;
  gap: 0.7rem;
  min-height: 15rem;
  padding: 1.2rem;
  border: 2px solid rgba(8, 43, 122, 0.16);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(9, 36, 92, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.quick-path-grid a:nth-child(1) {
  background: var(--sun);
}

.quick-path-grid a:nth-child(2) {
  background: var(--sky);
}

.quick-path-grid a:nth-child(3) {
  background: var(--mint);
}

.quick-path-grid a:nth-child(4) {
  background: var(--blush);
}

.quick-path-grid a:hover {
  transform: translateY(-4px);
  border-color: var(--blue-700);
  box-shadow: 0 24px 44px rgba(9, 36, 92, 0.18);
}

.quick-path-grid span {
  color: var(--gold-600);
  font-weight: 900;
}

.quick-path-grid h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: 1.25rem;
}

.quick-path-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.quick-path-grid strong {
  align-self: end;
  width: fit-content;
  padding: 0.68rem 1rem;
  border-radius: 999px;
  background: var(--blue-900);
  color: #ffffff;
}

.needs-section {
  background: linear-gradient(135deg, #fff1f2 0%, #fffaf0 48%, #eef4ff 100%);
}

.needs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.2rem;
  align-items: start;
}

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.wishlist-grid article,
.needs-tracker {
  border: 1px solid rgba(8, 43, 122, 0.16);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(9, 36, 92, 0.1);
}

.wishlist-grid article {
  min-height: 12rem;
  padding: 1rem;
}

.wishlist-grid article:nth-child(1) {
  background: var(--sun);
}

.wishlist-grid article:nth-child(2) {
  background: var(--sky);
}

.wishlist-grid article:nth-child(3) {
  background: var(--mint);
}

.wishlist-grid article:nth-child(4) {
  background: var(--blush);
}

.wishlist-grid span {
  color: var(--gold-600);
  font-weight: 900;
}

.wishlist-grid h3,
.needs-tracker h3 {
  margin: 0.35rem 0;
  color: var(--blue-900);
}

.wishlist-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.needs-tracker {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
}

.need-row {
  display: grid;
  gap: 0.45rem;
  padding: 0.9rem;
  border-radius: 8px;
  background: #f7fbff;
}

.need-row div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--blue-900);
  font-weight: 900;
}

.need-row p,
.need-row small {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.need-bar {
  height: 0.85rem;
  overflow: hidden;
  border-radius: 999px;
  background: #dce7f6;
}

.need-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), #22c55e);
}

.sponsor-wall-section {
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
}

.sponsor-wall-section .section-heading h2,
.sponsor-wall-section .section-heading p,
.sponsor-wall-section .eyebrow {
  color: #ffffff;
}

.sponsor-wall-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.sponsor-wall-grid article {
  min-height: 12rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  color: #ffffff;
}

.sponsor-wall-grid article:not(.sponsor-feature) {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.sponsor-feature {
  grid-row: span 2;
  display: grid;
  align-content: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600)) !important;
  color: #181100 !important;
}

.sponsor-wall-grid span {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sponsor-wall-grid h3 {
  margin: 0;
  color: inherit;
}

.sponsor-wall-grid p {
  margin: 0;
  color: inherit;
  line-height: 1.65;
  opacity: 0.92;
}

.about-grid {
  background: linear-gradient(135deg, #ffffff 0%, var(--sun) 100%);
}

.programs-section {
  background: linear-gradient(135deg, var(--sky) 0%, #f7fbff 100%);
}

.program-grid article:nth-child(3n + 1),
.application-grid a:nth-child(3n + 1),
.updates-grid article:nth-child(3n + 1),
.social-grid a:nth-child(3n + 1) {
  background: var(--sun);
}

.program-grid article:nth-child(3n + 2),
.application-grid a:nth-child(3n + 2),
.updates-grid article:nth-child(3n + 2),
.social-grid a:nth-child(3n + 2) {
  background: var(--sky);
}

.program-grid article:nth-child(3n),
.application-grid a:nth-child(3n),
.updates-grid article:nth-child(3n),
.social-grid a:nth-child(3n) {
  background: var(--mint);
}

.upcoming-event-section {
  background: linear-gradient(135deg, #082b7a 0%, #1048b5 55%, #f4ca4c 100%);
}

.upcoming-event-section .section-heading h2,
.upcoming-event-section .section-heading p,
.upcoming-event-section .eyebrow {
  color: #ffffff;
}

.event-panel {
  background: #fffaf0;
}

.event-details div:nth-child(odd),
.event-schedule article:nth-child(odd) {
  background: #ffffff;
}

.event-details div:nth-child(even),
.event-schedule article:nth-child(even) {
  background: #eef7ff;
}

.goal-section {
  background: linear-gradient(135deg, #fffaf0 0%, #dcfce7 100%);
}

.goal-panel {
  background: #ffffff;
  border-color: rgba(18, 140, 74, 0.22);
}

.updates-section {
  background: linear-gradient(135deg, #eef4ff 0%, #fff1f2 100%);
}

.testimonials-section {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
}

.testimonials-section .section-heading h2,
.testimonials-section .section-heading p,
.testimonials-section .eyebrow {
  color: #ffffff;
}

.testimonial-grid blockquote {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.testimonial-grid p,
.testimonial-grid cite {
  color: #ffffff;
}

.social-section {
  background: linear-gradient(135deg, #dcfce7 0%, #eef4ff 100%);
}

.collaborations-section {
  background: linear-gradient(135deg, #fffaf0 0%, #eef4ff 55%, #dcfce7 100%);
}

.contact-section {
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
}

.contact-section h2,
.contact-section p:not(.eyebrow),
.contact-section .eyebrow {
  color: #ffffff;
}

.form-section,
.single-form-section {
  background: linear-gradient(135deg, #eef4ff 0%, #fffaf0 100%);
}

.hsf-form {
  background: #ffffff;
}

.form-group:nth-of-type(odd) {
  background: #f7fbff;
}

.form-group:nth-of-type(even) {
  background: #fffaf0;
}

@media (max-width: 780px) {
  .event-panel,
  .event-details,
  .goal-panel,
  .quick-path-grid,
  .needs-layout,
  .wishlist-grid,
  .sponsor-wall-grid,
  .updates-grid,
  .testimonial-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .event-photo img {
    min-height: 240px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.45rem, 13vw, 4.2rem);
  }

  .hero {
    padding-bottom: 7rem;
  }

  .program-grid,
  .accountability-grid,
  .outcome-grid,
  .team-grid,
  .kit-grid,
  .form-group {
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .floating-actions {
    right: 0.7rem;
    bottom: 0.7rem;
  }

  .float-whatsapp,
  .float-whatsapp:hover {
    width: 3.4rem;
    height: 3.4rem;
  }

  .float-donate,
  .float-donate:hover {
    width: 7.6rem !important;
    height: 3.4rem;
  }

  .float-whatsapp span {
    display: none;
  }
}
