:root {
  --primary: #0c3b67;
  --primary-dark: #082946;
  --primary-light: #1e5d97;
  --accent: #e6f1fb;
  --black: #081018;
  --dark: #111926;
  --text: #243241;
  --muted: #617285;
  --white: #ffffff;
  --border: rgba(8, 16, 24, 0.08);
  --shadow: 0 18px 55px rgba(8, 16, 24, 0.12);
  --radius: 22px;
  --container: 1220px;
  --transition: 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  z-index: 2000;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1100;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 8px 24px rgba(8, 16, 24, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text strong {
  color: var(--primary-dark);
  font-size: 16px;
  letter-spacing: 0.4px;
}

.brand-text span {
  color: var(--primary-light);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-menu a {
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  background: var(--primary);
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  color: var(--white);
  border: none;
  font-weight: 800;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(12, 59, 103, 0.2);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.btn-sm {
  padding: 11px 18px;
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 90px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(5, 17, 31, 0.75), rgba(5, 17, 31, 0.7)),
    url("https://images.unsplash.com/photo-1517479149777-5f3b1511d5ad?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(30, 93, 151, 0.35), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08), transparent 25%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--primary);
}

.eyebrow.light {
  color: #d8e9fa;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 74px);
  line-height: 0.98;
  max-width: 760px;
  margin-bottom: 18px;
}

.hero h1 span {
  color: #cbe6ff;
}

.hero-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 700px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-mini-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.mini-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  padding: 18px;
  border-radius: 18px;
}

.mini-card strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.mini-card span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-panel .panel-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  padding: 30px;
}

.panel-card h3 {
  font-size: 26px;
  margin-bottom: 18px;
}

.panel-card ul {
  list-style: none;
  display: grid;
  gap: 13px;
}

.panel-card li {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.quick-values {
  padding: 0 0 90px;
  background: #f5f9fd;
}

.quick-grid {
  margin-top: -38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.q-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(8, 16, 24, 0.06);
}

.q-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  margin-bottom: 18px;
  font-weight: 800;
}

.q-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.section {
  padding: 100px 0;
}

.section-head {
  margin-bottom: 42px;
}

.section-head.center {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 52px;
}

.section-head h2,
.text-block h2,
.contact-copy h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.section-head p,
.text-block p,
.contact-copy p {
  color: var(--muted);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split-grid.reverse .impact-photo {
  order: 2;
}

.image-stack {
  position: relative;
  min-height: 560px;
}

.main-img img {
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.small-img {
  position: absolute;
  width: 42%;
  right: -10px;
  bottom: -20px;
  border: 8px solid var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.small-img img {
  height: 220px;
  object-fit: cover;
}

.bullet-points {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 16px;
}

.bullet-points div {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f4f8fc;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 700;
  color: var(--primary-dark);
}

.bullet-points span {
  color: var(--primary);
}

.statement-band {
  padding: 110px 0;
  background:
    linear-gradient(rgba(8, 28, 46, 0.85), rgba(8, 28, 46, 0.88)),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1600&q=80") center/cover fixed;
  color: var(--white);
}

.statement-band h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  max-width: 960px;
  margin-bottom: 18px;
}

.statement-band p:last-child {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
}

.programs-section {
  background: #f8fbfe;
}

.cards-grid.four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(8, 16, 24, 0.06);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-8px);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  margin-bottom: 18px;
}

.info-card h3 {
  font-size: 21px;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.timeline {
  margin-top: 44px;
  display: grid;
  gap: 18px;
}

.timeline-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  padding: 18px 22px;
}

.timeline-item span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--primary);
  font-weight: 900;
}

.timeline-item h4 {
  color: var(--primary-dark);
  margin-bottom: 4px;
  font-size: 19px;
}

.impact-photo img {
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.stats-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-box {
  background: #f4f8fc;
  border: 1px solid rgba(12, 59, 103, 0.08);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
}

.stat-box h3 {
  font-size: 38px;
  color: var(--primary);
  margin-bottom: 6px;
}

.support-cta {
  padding: 100px 0;
  background:
    linear-gradient(rgba(7, 20, 34, 0.82), rgba(7, 20, 34, 0.82)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--white);
}

.support-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: center;
}

.support-copy h2 {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  margin-bottom: 16px;
}

.support-copy p {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 26px;
}

.support-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  padding: 28px;
  backdrop-filter: blur(10px);
}

.support-card h3 {
  margin-bottom: 18px;
  font-size: 24px;
}

.support-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: 290px 290px;
  gap: 18px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.55s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.details-section {
  background: #f8fbfe;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(8, 16, 24, 0.05);
}

.detail-card.wide {
  grid-column: span 2;
}

.detail-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}

.contact-list {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.contact-list div {
  background: #f5f9fd;
  border-radius: 18px;
  padding: 16px 18px;
}

.contact-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary-dark);
}

.contact-list a {
  color: var(--primary);
  font-weight: 800;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #fbfdff;
  border-radius: 14px;
  padding: 15px 16px;
  margin-bottom: 14px;
  outline: none;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(12, 59, 103, 0.35);
  box-shadow: 0 0 0 4px rgba(12, 59, 103, 0.08);
}

.contact-form small {
  display: block;
  color: var(--muted);
  margin-top: 14px;
}

.site-footer {
  background: #081018;
  color: #d4dfeb;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 30px;
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
  margin-bottom: 14px;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.site-footer a:hover {
  color: #a9d5ff;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  display: none;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 16px 30px rgba(12, 59, 103, 0.28);
}

.cookie-box {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 16px;
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 14px;
}

.cookie-box p {
  font-size: 14px;
  color: var(--muted);
}

.cookie-box button {
  border: none;
  background: var(--primary);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: 0.85s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .support-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid.four,
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item,
  .gallery-item.large {
    grid-row: auto;
    height: 320px;
  }

  .small-img {
    position: static;
    width: 100%;
    border: none;
    border-radius: 24px;
    margin-top: 18px;
  }

  .image-stack {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 88px;
    left: 20px;
    right: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero {
    padding: 130px 0 80px;
  }

  .quick-grid,
  .hero-mini-cards,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid.four,
  .details-grid,
  .bullet-points,
  .form-row {
    grid-template-columns: 1fr;
  }

  .detail-card.wide {
    grid-column: span 1;
  }

  .brand-text strong {
    font-size: 14px;
  }

  .brand-text span {
    font-size: 11px;
  }

  .cookie-box {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }
}