:root {
  --npp-blue: #003580;
  --npp-blue-dark: #002260;
  --npp-blue-mid: #1a4a96;
  --npp-blue-light: #e8edf8;
  --npp-red: #ce1126;
  --npp-red-dark: #9e0d1c;
  --npp-red-light: #fceaec;
  --white: #ffffff;
  --off-white: #f7f8fc;
  --cream: #fafafa;
  --text-dark: #0d1e3a;
  --text-mid: #3a4f6e;
  --text-muted: #7088a8;
  --border-blue: rgba(0, 53, 128, 0.15);
  --ff-serif: "Playfair Display", Georgia, serif;
  --ff-sans: "DM Sans", sans-serif;
  --shadow-sm: 0 2px 16px rgba(0, 53, 128, 0.08);
  --shadow-md: 0 8px 40px rgba(0, 53, 128, 0.13);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--ff-sans);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* TOP BAR */
.topbar {
  background: var(--npp-blue-dark);
  padding: 8px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
}
.topbar-left {
  display: flex;
  gap: 24px;
}
.topbar-left span::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--npp-red);
  border-radius: 50%;
  margin-right: 7px;
  vertical-align: middle;
}
.topbar-right {
  display: flex;
  gap: 10px;
}
.tsocial {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 7px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  transition: all 0.2s;
}
.tsocial:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 3px solid var(--npp-red);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 76px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo {
  width: 50px;
  height: 50px;
  /* border-radius: 50%; */
  /* background: var(--npp-blue); */
  border: 3px solid var(--npp-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.nav-logo-init {
  font-family: var(--ff-serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.nav-logo-party {
  font-size: 7px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.1em;
}
.nav-title strong {
  font-family: var(--ff-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--npp-blue-dark);
  display: block;
  line-height: 1.2;
}
.nav-title span {
  font-size: 11px;
  color: var(--npp-red);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--npp-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.nav-links a:hover {
  color: var(--npp-blue);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-cta {
  background: var(--npp-red) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 3px;
  font-weight: 600 !important;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--npp-red-dark) !important;
  color: var(--white) !important;
}

/* HERO */
.hero {
  background: var(--npp-blue-dark);
  min-height: 82vh;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 15% 60%,
      rgba(206, 17, 38, 0.13) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 85% 20%,
      rgba(26, 74, 150, 0.25) 0%,
      transparent 50%
    );
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0px,
    rgba(255, 255, 255, 1) 1px,
    transparent 1px,
    transparent 80px
  );
}
.hero-text-side {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 60px 160px 8%;
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.eyebrow-line {
  width: 36px;
  height: 2px;
  background: var(--npp-red);
}
.hero-eyebrow span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.hero-name {
  font-family: var(--ff-serif);
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  margin-bottom: 8px;
}
.hero-name em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}
.hero-suffix {
  font-family: var(--ff-serif);
  font-size: clamp(17px, 2vw, 24px);
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
}
.hero-rule {
  width: 70px;
  height: 3px;
  background: linear-gradient(to right, var(--npp-red), transparent);
  margin-bottom: 28px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(206, 17, 38, 0.15);
  border: 1px solid rgba(206, 17, 38, 0.35);
  border-radius: 2px;
  padding: 10px 18px;
  margin-bottom: 32px;
  width: fit-content;
}
.ghana-flag {
  display: flex;
  height: 14px;
  border-radius: 2px;
  overflow: hidden;
  width: 28px;
  flex-shrink: 0;
}
.gf-r {
  background: #006b3f;
  flex: 1;
}
.gf-g {
  background: #fcd116;
  flex: 1;
}
.gf-b {
  background: #ce1126;
  flex: 1;
}
.hero-tag span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.04em;
}
.hero-desc {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.62);
  max-width: 460px;
  margin-bottom: 44px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-red {
  display: inline-block;
  background: var(--npp-red);
  color: var(--white);
  padding: 15px 38px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--npp-red);
  transition: all 0.2s;
}
.btn-red:hover {
  background: var(--npp-red-dark);
  border-color: var(--npp-red-dark);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  padding: 15px 38px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.28);
  transition: all 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
}

.hero-img-side {
  position: relative;
  overflow: hidden;
}
.hero-img-side::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100px;
  background: linear-gradient(to right, var(--npp-blue-dark), transparent);
  z-index: 2;
}
.hero-img-side::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, var(--npp-blue-dark), transparent);
  z-index: 2;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.07) saturate(0.88);
}

.hero-ribbon {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 3px solid var(--npp-red);
}
.hstat {
  background: rgba(0, 26, 72, 0.97);
  backdrop-filter: blur(10px);
  padding: 22px 32px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.hstat:last-child {
  border-right: none;
}
.hstat-num {
  font-family: var(--ff-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
}
.hstat-num .accent {
  color: var(--npp-red);
}
.hstat-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-top: 6px;
}

/* SECTION COMMONS */
.stag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--npp-red);
  margin-bottom: 14px;
}
.stag::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--npp-red);
}
.sh2 {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--npp-blue-dark);
  line-height: 1.2;
  margin-bottom: 18px;
}
.sintro {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-mid);
}

/* ABOUT */
.about {
  background: var(--white);
  padding: 100px 5%;
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.aframe {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 3px solid var(--npp-blue-light);
  border-radius: 4px;
  z-index: 0;
}
.aaccent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 72px;
  height: 72px;
  background: var(--npp-red);
  border-radius: 2px;
  z-index: 3;
}
.about-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
}
.about-quote {
  font-family: var(--ff-serif);
  font-size: 21px;
  font-style: italic;
  line-height: 1.6;
  color: var(--npp-blue-dark);
  border-left: 4px solid var(--npp-red);
  padding-left: 22px;
  margin: 26px 0;
}
.about-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.about-sig {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.sig-name {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--npp-blue-dark);
}
.sig-role {
  font-size: 12px;
  color: var(--npp-red);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}
.npp-pill {
  background: var(--npp-blue);
  color: var(--white);
  padding: 9px 18px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* PRIORITIES */
.priorities {
  background: var(--npp-blue-dark);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}
.priorities::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--npp-red),
    var(--npp-blue-mid),
    var(--npp-red)
  );
}
.priorities .stag {
  color: rgba(255, 255, 255, 0.5);
}
.priorities .stag::before {
  background: var(--npp-red);
}
.priorities .sh2 {
  color: var(--white);
}
.priorities .sintro {
  color: rgba(255, 255, 255, 0.6);
}
.priorities-head {
  max-width: 1200px;
  margin: 0 auto 56px;
}
.priorities-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pcard {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 38px 30px;
  position: relative;
  transition:
    background 0.3s,
    transform 0.3s;
  overflow: hidden;
}
.pcard::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--npp-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.pcard:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}
.pcard:hover::after {
  transform: scaleX(1);
}
.pcard-icon {
  width: 50px;
  height: 50px;
  border-radius: 3px;
  background: rgba(206, 17, 38, 0.15);
  border: 1px solid rgba(206, 17, 38, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.pcard-title {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 13px;
  line-height: 1.3;
}
.pcard-body {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 18px;
}
.pcard-list {
  list-style: none;
}
.pcard-list li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
  padding: 6px 0 6px 18px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.pcard-list li:last-child {
  border-bottom: none;
}
.pcard-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--npp-red);
  border-radius: 50%;
}
.priorities-coda {
  max-width: 1200px;
  margin: 56px auto 0;
  text-align: center;
}
.priorities-coda p {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 300px;
}
.gcell {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gcell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.5s,
    filter 0.5s;
  filter: saturate(0.6) brightness(0.9);
}
.gcell:hover img {
  transform: scale(1.07);
  filter: saturate(1) brightness(1);
}
.gcell-over {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 26, 96, 0.75), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.gcell:hover .gcell-over {
  opacity: 1;
}
.gcell-lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
}

/* VOLUNTEER */
.volunteer {
  background: var(--off-white);
  padding: 100px 5%;
}
.vol-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.vol-imgs {
  position: relative;
  height: 480px;
}
.vi1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 72%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.vi2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 52%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.vol-accent-box {
  position: absolute;
  bottom: 20px;
  left: 16px;
  background: var(--npp-red);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 3px;
  text-align: center;
  z-index: 5;
}
.vab-num {
  font-family: var(--ff-serif);
  font-size: 32px;
  font-weight: 700;
  display: block;
}
.vab-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}
.vol-text p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.vol-form {
  display: grid;
  gap: 13px;
  margin-top: 28px;
}
.vrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.vinput,
.vsel {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--ff-sans);
  font-size: 14px;
  background: var(--white);
  color: var(--text-dark);
  border: 1.5px solid var(--border-blue);
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.vinput:focus,
.vsel:focus {
  border-color: var(--npp-blue);
}
.vsubmit {
  width: 100%;
  padding: 15px;
  background: var(--npp-blue);
  color: var(--white);
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
}
.vsubmit:hover {
  background: var(--npp-blue-mid);
  transform: translateY(-1px);
}

/* NEWS */
.news {
  background: var(--white);
  padding: 100px 5%;
}
.news-head {
  max-width: 1200px;
  margin: 0 auto 52px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.news-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ncard {
  border: 1px solid var(--border-blue);
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  display: flex;
  flex-direction: column;
}
.ncard:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.ncard-imgwrap {
  overflow: hidden;
  position: relative;
}
.ncard-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.45s;
}
.ncard:hover .ncard-img {
  transform: scale(1.05);
}
.ncat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--npp-red);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}
.ncard-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ndate {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.ntitle {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--npp-blue-dark);
  line-height: 1.4;
  margin-bottom: 12px;
  flex: 1;
}
.nexcerpt {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.nmore {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--npp-red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.nmore:hover {
  gap: 10px;
}
.nmore::after {
  content: "→";
}

/* CTA BANNER */
.cta-banner {
  background: var(--npp-blue-dark);
  padding: 72px 5%;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--npp-red);
}
.cta-banner::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--npp-blue-mid);
}
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-t .stag {
  color: rgba(255, 255, 255, 0.45);
}
.cta-t .stag::before {
  background: var(--npp-red);
}
.cta-h2 {
  font-family: var(--ff-serif);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  max-width: 580px;
}
.cta-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}
.cta-btns {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* CONTACT */
.contact {
  background: var(--white);
  padding: 100px 5%;
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}
.ccard {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 4px;
  border: 1px solid var(--border-blue);
  transition: all 0.2s;
}
.ccard:hover {
  border-color: var(--npp-blue);
  box-shadow: var(--shadow-sm);
}
.ccard-icon {
  width: 44px;
  height: 44px;
  border-radius: 3px;
  background: var(--npp-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ccard-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--npp-red);
  margin-bottom: 4px;
}
.ccard-val {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
}
.cf-group {
  margin-bottom: 16px;
}
.cf-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  display: block;
  margin-bottom: 7px;
}
.cf-input,
.cf-textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--ff-sans);
  font-size: 14px;
  background: var(--off-white);
  color: var(--text-dark);
  border: 1.5px solid var(--border-blue);
  border-radius: 3px;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.cf-input:focus,
.cf-textarea:focus {
  border-color: var(--npp-blue);
  background: var(--white);
}
.cf-textarea {
  resize: vertical;
  min-height: 120px;
}
.cf-submit {
  width: 100%;
  padding: 15px;
  background: var(--npp-red);
  color: var(--white);
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 4px;
}
.cf-submit:hover {
  background: var(--npp-red-dark);
  transform: translateY(-1px);
}


/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding-block: 20px;
  }
  .hero-img-side {

    margin-top: 20px;
  }
   .hero-ribbon{
    display: none;
   }
  .hero-text-side {
    padding: 0 5%;
  }
  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-img-wrap {
    max-width: 340px;
  }
  .priorities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vol-inner {
    grid-template-columns: 1fr;
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    height: 400px;
  }
}
@media (max-width: 640px) {
  .topbar-right,
  .nav-links {
    display: none;
  }
  .priorities-grid,
  .news-grid,
  .vrow {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .gallery {
    height: 300px;
  }
  .hero-ribbon {
    grid-template-columns: 1fr;
  }
}
