:root {
  --bg: #fff8c4;
  --bg-strong: #fff2a9;
  --surface: rgba(255, 251, 233, 0.86);
  --surface-strong: #ffffff;
  --line: rgba(11, 49, 133, 0.14);
  --line-strong: rgba(11, 49, 133, 0.26);
  --ink: #0b3185;
  --muted: #435a8f;
  --brand: #0b3185;
  --brand-strong: #08286d;
  --accent: #ffc400;
  --accent-deep: #f1b000;
  --accent-soft: #bddcff;
  --success: #2d8c79;
  --shadow-soft: 0 22px 50px rgba(11, 49, 133, 0.1);
  --shadow-bold: 0 36px 100px rgba(11, 49, 133, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 40px));
  --header-offset: 104px;
  --dot-pattern: radial-gradient(circle, rgba(255, 196, 0, 0.4) 0 1.6px, transparent 1.7px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
  overflow-anchor: none;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 209, 87, 0.65) 0, rgba(255, 209, 87, 0) 24%),
    radial-gradient(circle at 84% 18%, rgba(166, 205, 255, 0.22) 0, rgba(166, 205, 255, 0) 18%),
    linear-gradient(168deg, rgba(255, 244, 176, 0.98) 0 58%, rgba(11, 49, 133, 1) 58% 100%),
    linear-gradient(180deg, #fff9d7 0%, #fff4b5 100%);
  color: var(--ink);
  overflow-x: hidden;
  overflow-anchor: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: clip;
  isolation: isolate;
  overflow-anchor: none;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  inset: auto;
  z-index: 0;
  pointer-events: none;
  filter: blur(14px);
}

.page-shell::before {
  top: 120px;
  right: -180px;
  width: 420px;
  height: 420px;
  border-radius: 38px;
  background: rgba(255, 196, 0, 0.18);
  transform: rotate(-12deg);
}

.page-shell::after {
  top: 760px;
  left: -120px;
  width: 320px;
  height: 320px;
  border-radius: 28px;
  background: rgba(189, 220, 255, 0.22);
  transform: rotate(18deg);
}

.page-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.atmosphere-line,
.atmosphere-dots {
  position: absolute;
  display: block;
}

.atmosphere-line {
  border: 4px solid rgba(205, 227, 255, 0.72);
  border-radius: 999px;
  opacity: 0.72;
  filter: drop-shadow(0 0 18px rgba(163, 202, 255, 0.16));
  animation: ribbonFloat 18s ease-in-out infinite alternate;
}

.atmosphere-line-one {
  top: 110px;
  right: -240px;
  width: 760px;
  height: 220px;
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(6deg);
}

.atmosphere-line-two {
  top: 540px;
  left: -260px;
  width: 820px;
  height: 240px;
  border-right-color: transparent;
  border-top-color: transparent;
  transform: rotate(-8deg);
  animation-duration: 24s;
}

.atmosphere-dots {
  background-image: var(--dot-pattern);
  background-size: 16px 16px;
  opacity: 0.3;
  animation: dotDrift 14s ease-in-out infinite;
}

.atmosphere-dots-one {
  top: 210px;
  right: 8%;
  width: 180px;
  height: 180px;
}

.atmosphere-dots-two {
  left: 3%;
  bottom: 200px;
  width: 220px;
  height: 220px;
  opacity: 0.2;
  animation-duration: 18s;
}

.container {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

main section[id] {
  scroll-margin-top: var(--header-offset);
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-tint {
  background:
    radial-gradient(circle at top right, rgba(255, 208, 61, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 246, 196, 0.82), rgba(255, 251, 233, 0.25));
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 10px 14px;
  background: var(--accent);
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 900;
  border-radius: 6px;
  box-shadow: 8px 8px 0 rgba(11, 49, 133, 0.12);
}

.section-title,
.hero h1 {
  margin: 0;
  font-family: "Rubik", sans-serif;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(42px, 5vw, 74px);
  max-width: 12ch;
}

.section-title {
  font-size: clamp(30px, 3.4vw, 52px);
  max-width: 14ch;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px 0;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(255, 251, 233, 0.94), rgba(255, 247, 204, 0.78));
  border-bottom: 1px solid rgba(11, 49, 133, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: white;
  border: 2px solid rgba(11, 49, 133, 0.08);
  box-shadow: 0 14px 30px rgba(11, 49, 133, 0.16);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 16px;
}

.brand-text span {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(11, 49, 133, 0.08);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(11, 49, 133, 0.08);
  box-shadow: var(--shadow-soft);
}

.social-link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 196, 0, 0.14);
  transition: transform 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}

.social-link img {
  width: 18px;
  height: 18px;
  filter: invert(14%) sepia(61%) saturate(3111%) hue-rotate(211deg) brightness(86%) contrast(99%);
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 196, 0, 0.32);
  box-shadow: 0 12px 24px rgba(11, 49, 133, 0.12);
}

.site-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: background-color 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--brand);
  color: white;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--brand);
  border-radius: 999px;
}

.hero {
  padding: 18px 0 92px;
}

.split-section,
.contact-grid,
.results-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.hero-copy,
.section-copy,
.contact-copy {
  display: grid;
  gap: 24px;
}

.hero-lead,
.section-copy p,
.contact-copy p,
.campaigns-head p,
.finance-card p,
.program-top p,
.feature-card p,
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

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

.button::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -34%;
  width: 30%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transition: transform 0.5s ease;
}

.button:hover::after {
  transform: translateX(330%) skewX(-18deg);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand) 0%, #1348bd 100%);
  box-shadow: 0 20px 40px rgba(11, 49, 133, 0.25);
}

.button-secondary {
  background: rgba(255, 251, 233, 0.86);
  border: 1px solid rgba(11, 49, 133, 0.12);
  color: var(--ink);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 10px 0 0;
}

.hero-stats div,
.stat-card,
.feature-card,
.service-panel,
.program-card,
.campaigns-card,
.finance-card,
.contact-card,
.mini-card {
  background: var(--surface);
  border: 1px solid rgba(11, 49, 133, 0.08);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  padding: 20px;
  border-radius: 22px;
}

.hero-stats dt,
.stat-card strong,
.finance-head strong {
  display: block;
  font-family: "Rubik", sans-serif;
  font-size: clamp(24px, 2vw, 34px);
}

.hero-stats dd,
.stat-card span,
.finance-year {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.hero-stage {
  position: relative;
  min-height: calc(100vh - 122px);
  overflow: hidden;
  box-shadow: var(--shadow-bold);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(11, 49, 133, 0.08), rgba(11, 49, 133, 0.16)),
    #0b3185;
}

.hero-stage::before {
  content: "";
  position: absolute;
  top: 4%;
  right: -8%;
  width: 56%;
  height: 22%;
  border: 5px solid rgba(197, 224, 255, 0.72);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 999px;
  transform: rotate(8deg);
  opacity: 0.86;
  animation: ribbonFloat 16s ease-in-out infinite alternate;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 49, 133, 0.52) 0%, rgba(11, 49, 133, 0.2) 28%, rgba(11, 49, 133, 0.04) 50%, rgba(11, 49, 133, 0) 72%),
    linear-gradient(180deg, rgba(11, 49, 133, 0.08) 0%, rgba(11, 49, 133, 0) 38%, rgba(11, 49, 133, 0.16) 100%);
  pointer-events: none;
}

.hero-ribbons {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-ribbon {
  position: absolute;
  display: block;
  border: 4px solid rgba(210, 231, 255, 0.72);
  border-radius: 999px;
  opacity: 0.75;
  animation: ribbonFloat 20s ease-in-out infinite alternate;
}

.hero-ribbon-one {
  left: -12%;
  bottom: 10%;
  width: 58%;
  height: 22%;
  border-top-color: transparent;
  border-right-color: transparent;
  transform: rotate(8deg);
}

.hero-ribbon-two {
  right: -10%;
  top: 13%;
  width: 42%;
  height: 18%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(-12deg);
  animation-duration: 22s;
}

.hero-background,
.photo-frame {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-background {
  object-position: center top;
  transform: scale(1.03);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.photo-frame {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-bold);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  align-content: space-between;
  padding-top: clamp(42px, 8vh, 92px);
  padding-bottom: clamp(28px, 5vh, 52px);
}

.hero-copy {
  max-width: min(680px, 58vw);
}

.hero-title-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 840px;
}

.hero-title-band {
  display: inline-flex;
  align-items: center;
  min-height: 88px;
  padding: 14px 24px;
  border-radius: 10px;
  font-family: "Rubik", sans-serif;
  font-size: clamp(34px, 5vw, 74px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.06em;
  box-shadow: 14px 14px 0 rgba(11, 49, 133, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-title-band-light {
  background: rgba(255, 251, 233, 0.96);
  color: var(--brand);
}

.hero-title-band-dark {
  background: rgba(11, 49, 133, 0.96);
  color: white;
}

.hero-title-band-accent {
  min-height: 64px;
  padding-block: 12px;
  font-size: clamp(18px, 2vw, 28px);
  background: rgba(255, 196, 0, 0.96);
  color: var(--brand);
}

.hero-title-band-accent::after {
  content: "";
  width: 44px;
  height: 2px;
  margin-left: 14px;
  background: currentColor;
  opacity: 0.5;
}

.hero-copy:hover .hero-title-band {
  transform: translateY(-2px);
  box-shadow: 18px 18px 0 rgba(11, 49, 133, 0.1);
}

.split-section {
  align-items: start;
}

.value-list,
.opportunity-grid,
.service-grid,
.program-grid,
.stats-grid,
.finance-grid,
.partners-grid,
.campaign-grid {
  display: grid;
  gap: 18px;
}

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

.mini-card,
.feature-card,
.service-card,
.program-card,
.stat-card,
.finance-card {
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.mini-card:hover,
.feature-card:hover,
.service-card:hover,
.program-card:hover,
.stat-card:hover,
.finance-card:hover,
.campaigns-card:hover,
.contact-card:hover,
.feed-card:hover,
.partner-logo:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 62px rgba(11, 49, 133, 0.14);
}

.mini-card h3,
.feature-card h3,
.service-card strong,
.program-card h3,
.campaigns-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-family: "Rubik", sans-serif;
  font-weight: 800;
  line-height: 1.3;
}

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

.stacked-media {
  display: grid;
  gap: 18px;
}

.photo-frame-large {
  min-height: 520px;
}

.stack-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.stack-row .photo-frame {
  min-height: 240px;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.section-heading::after {
  content: "";
  width: 112px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 196, 0, 0.14));
  box-shadow: 10px 10px 0 rgba(11, 49, 133, 0.08);
}

.section-heading .section-title {
  max-width: 16ch;
}

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

.card-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  margin-bottom: 16px;
  border-radius: 6px;
  background: var(--accent);
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 8px 8px 0 rgba(11, 49, 133, 0.08);
}

.service-panel {
  margin-top: 24px;
  padding: 30px;
  border-radius: 30px;
}

.service-panel-head {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.service-panel-head h3 {
  margin: 0;
  font-size: 28px;
}

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

.service-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(255, 196, 0, 0.22);
  color: #6d5100;
  font-weight: 800;
}

.brand-feed .section-title {
  max-width: 15ch;
}

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

.feed-card {
  display: grid;
  gap: 0;
  background: white;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(11, 49, 133, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.feed-card-accent {
  transform: translateY(22px);
}

.feed-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-strong);
}

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

.feed-caption {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.feed-label {
  display: inline-flex;
  width: fit-content;
  padding: 8px 10px;
  border-radius: 6px;
  background: var(--brand);
  color: white;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.feed-caption strong {
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  line-height: 1.35;
}

.hero-lead-overlay {
  max-width: 34rem;
  padding: 18px 22px;
  background: rgba(255, 251, 233, 0.9);
  border-radius: 16px;
  border: 1px solid rgba(11, 49, 133, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-stats-overlay {
  max-width: min(760px, 72vw);
  margin-left: auto;
}

.program-card {
  display: grid;
  gap: 24px;
}

.program-top {
  display: grid;
  gap: 14px;
}

.program-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.program-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.6;
}

.program-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #5b88ef);
}

.program-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.program-meta span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(17, 39, 84, 0.06);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.results-layout {
  align-items: stretch;
}

.results-section .container {
  display: grid;
  gap: 28px;
}

.results-top {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  align-items: start;
}

.results-intro {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 100%;
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 248, 214, 0.96), rgba(255, 252, 240, 0.88));
  border: 1px solid rgba(11, 49, 133, 0.1);
  box-shadow: var(--shadow-soft);
}

.results-intro .section-title {
  max-width: 12ch;
}

.results-intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.stats-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: start;
}

.stat-card {
  min-height: 154px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.campaigns-card {
  padding: 30px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.campaigns-card::before {
  content: "";
  position: absolute;
  top: -18px;
  right: 28px;
  width: 86px;
  height: 86px;
  border: 3px solid rgba(11, 49, 133, 0.12);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 999px;
  pointer-events: none;
}

.campaigns-head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

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

.campaign-grid article {
  padding: 20px;
  border-radius: 22px;
  background: rgba(11, 49, 133, 0.05);
}

.campaign-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.campaign-grid span {
  color: var(--muted);
  line-height: 1.6;
}

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

.finance-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.finance-year {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.meter {
  margin: 18px 0 8px;
  height: 12px;
  border-radius: 999px;
  background: rgba(17, 39, 84, 0.08);
  overflow: hidden;
}

.meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), #5f8dff);
}

.meter-secondary span {
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
}

.finance-card small {
  color: var(--muted);
  font-size: 13px;
}

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

.partner-logo {
  display: grid;
  place-items: center;
  min-height: 132px;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 49, 133, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.partner-logo img {
  width: 100%;
  max-height: 70px;
  object-fit: contain;
}

.contact-card {
  padding: 30px;
  border-radius: 30px;
  display: grid;
  gap: 20px;
}

.contact-item {
  display: grid;
  gap: 8px;
}

.contact-item span {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.contact-item strong,
.contact-item a {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}

.site-footer {
  padding: 32px 0 46px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border-top: 1px solid var(--line);
}

.footer-wrap p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.footer-link {
  color: var(--brand);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes ribbonFloat {
  from {
    translate: 0 0;
  }
  to {
    translate: 16px -12px;
  }
}

@keyframes dotDrift {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.36;
    transform: scale(1.04);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-10px, -8px, 0);
  }
}

@media (max-width: 1100px) {
  .split-section,
  .contact-grid,
  .results-layout,
  .results-top {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 780px;
  }

  .hero-copy {
    max-width: min(720px, 100%);
  }

  .results-intro .section-title {
    max-width: 100%;
  }

  .atmosphere-line-one {
    width: 620px;
    height: 180px;
  }

  .atmosphere-line-two {
    width: 680px;
    height: 200px;
  }

  .opportunity-grid,
  .service-grid,
  .program-grid,
  .partners-grid,
  .feed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --header-offset: 88px;
  }

  .section {
    padding: 84px 0;
  }

  .site-header {
    position: relative;
    padding: 14px 0;
  }

  .nav-toggle {
    display: inline-block;
  }

  .header-actions {
    gap: 12px;
  }

  .social-links {
    padding: 6px 8px;
    gap: 8px;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: 24px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .hero-stats,
  .value-list,
  .stats-grid,
  .campaign-grid,
  .finance-grid,
  .opportunity-grid,
  .service-grid,
  .program-grid,
  .partners-grid,
  .stack-row,
  .feed-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: max(680px, calc(100svh - 28px));
    border-radius: 28px;
  }

  .hero-stage::before {
    width: 70%;
  }

  .hero-overlay {
    align-content: start;
    gap: 18px;
    min-height: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .hero-copy,
  .hero-lead-overlay,
  .hero-stats-overlay {
    max-width: 100%;
  }

  .results-intro {
    padding: 26px;
  }

  .hero-stats-overlay {
    margin-left: 0;
    margin-top: auto;
  }

  .hero-title-band {
    min-height: 74px;
  }

  .feed-card-accent {
    transform: none;
  }

  .atmosphere-line {
    opacity: 0.54;
  }

  .contact-item strong,
  .contact-item a {
    font-size: 18px;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 24px, 1180px);
    --header-offset: 78px;
  }

  .hero {
    padding: 0 0 72px;
  }

  .nav-wrap {
    gap: 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .brand-text span {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .social-links {
    gap: 6px;
    padding: 6px;
  }

  .social-link {
    width: 32px;
    height: 32px;
  }

  .social-link img {
    width: 15px;
    height: 15px;
  }

  .section-title {
    font-size: 28px;
  }

  .hero-stage {
    min-height: auto;
    border-radius: 24px;
  }

  .hero-stage::before {
    right: -32%;
    width: 92%;
    height: 18%;
  }

  .hero-ribbon-one {
    left: -24%;
    width: 92%;
    height: 16%;
  }

  .hero-ribbon-two,
  .atmosphere-line-two,
  .atmosphere-dots-two {
    display: none;
  }

  .hero-title-stack {
    gap: 8px;
  }

  .hero-title-band {
    min-height: 52px;
    padding: 9px 14px;
    font-size: clamp(24px, 8vw, 38px);
    box-shadow: 10px 10px 0 rgba(11, 49, 133, 0.12);
  }

  .hero-title-band-accent {
    min-height: 42px;
    font-size: 14px;
  }

  .hero-title-band-accent::after {
    width: 28px;
    margin-left: 10px;
  }

  .hero-overlay {
    align-content: start;
    gap: 14px;
    padding-top: 12px;
    padding-bottom: 14px;
  }

  .hero-lead-overlay {
    padding: 14px 16px;
    font-size: 15px;
    line-height: 1.52;
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    min-height: 50px;
    padding: 0 20px;
  }

  .hero-stats {
    gap: 12px;
  }

  .hero-stats div {
    padding: 16px;
    border-radius: 20px;
  }

  .hero-background {
    object-position: 58% top;
  }

  .atmosphere-dots-one {
    right: -12px;
    width: 120px;
    height: 120px;
  }

  .photo-frame-large {
    min-height: 320px;
  }

  .service-panel,
  .campaigns-card,
  .contact-card,
  .mini-card,
  .feature-card,
  .service-card,
  .program-card,
  .finance-card,
  .stat-card {
    padding: 22px;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: start;
  }

}
