:root {
  --navy: #031f4a;
  --navy-deep: #011534;
  --gold: #dca83a;
  --light-bg: #f4f6fb;
  --container-shell: 86%;
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  color: #364258;
}

.container-xl {
  width: min(1200px, var(--container-shell));
  max-width: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.nav-link,
.footer-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.btn.fw-bold,
button.btn.fw-bold,
a.btn.fw-bold {
  font-weight: 500 !important;
}

.public-page-hero {
  --page-hero-bg-image: url('/template/assets/images/page-hero-bg.jpg');
  padding-top: 124px;
  padding-bottom: 42px;
  color: #fff;
  background-image:
    radial-gradient(circle at 85% 10%, rgba(220, 168, 58, 0.22), transparent 42%),
    linear-gradient(140deg, rgba(3, 31, 74, 0.88) 0%, rgba(5, 40, 95, 0.9) 56%, rgba(8, 47, 112, 0.9) 100%),
    var(--page-hero-bg-image);
  background-size: auto, auto, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
}

.public-page-hero.is-compact {
  padding-bottom: 36px;
}

.public-page-hero-shell {
  text-align: center;
}

.public-page-kicker {
  margin: 0;
  color: rgba(255, 219, 145, 0.9);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.public-page-title {
  margin: 0.5rem 0 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
  font-weight: 800;
}

.public-page-lead {
  margin: 0.9rem 0 0;
  color: rgba(241, 247, 255, 0.94);
  font-size: 1.06rem;
  line-height: 1.45;
}

.public-breadcrumb {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.public-breadcrumb a {
  color: #ffd88e;
  text-decoration: none;
  font-weight: 700;
}

.public-breadcrumb .is-current {
  color: #fff;
  font-weight: 700;
}

.public-breadcrumb .crumb-sep {
  color: rgba(255, 255, 255, 0.55);
}

.hero-section {
  position: relative;
}

.hero-slider {
  position: relative;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  touch-action: pan-y;
}

.hero-bg,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.9s ease, transform 2.4s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at 65% 30%, rgba(220, 168, 58, 0.2), rgba(3, 31, 74, 0.15) 35%, rgba(3, 31, 74, 0.85) 80%);
}

.hero-container {
  position: relative;
  z-index: 3;
  height: 100%;
}

.hero-logo {
  height: 58px;
  width: auto;
  filter: none !important;
  box-shadow: none !important;
}

.logo-swap {
  position: relative;
  display: inline-grid;
  place-items: center;
}

.logo-swap .hero-logo {
  grid-area: 1 / 1;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.hero-logo-default {
  opacity: 1;
  transform: translateY(0);
}

.hero-logo-inverse {
  opacity: 0;
  transform: translateY(1px);
}

.main-nav {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  transform: none;
  z-index: 1100;
  width: 100%;
  max-width: none;
  border-radius: 0;
  transition: background-color 0.28s ease, backdrop-filter 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  border: 1px solid transparent;
}

.main-nav .navbar-brand {
  transition: background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.main-nav.is-scrolled {
  background: rgba(3, 31, 74, 0.58);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  box-shadow: 0 10px 20px rgba(2, 18, 45, 0.24);
}

.main-nav.is-scrolled .hero-logo-default {
  opacity: 0;
  transform: translateY(-1px);
}

.main-nav.is-scrolled .hero-logo-inverse {
  opacity: 1;
  transform: translateY(0);
}

.main-nav.is-drop {
  animation: navDrop 0.35s ease;
}

@keyframes navDrop {
  from {
    transform: translateY(-16px);
    opacity: 0.85;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.nav-menu-toggle {
  align-items: center;
  border: none;
  background: transparent;
  column-gap: 0.85rem;
  color: #fff;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.24s ease;
}

.nav-menu-toggle:hover,
.nav-menu-toggle:focus-visible {
  color: var(--gold);
}

.nav-menu-toggle-text {
  line-height: 1;
}

.nav-menu-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 2rem;
}

.nav-menu-toggle-icon .line {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 2px;
  transform-origin: center;
  transition: transform 0.28s ease, opacity 0.24s ease;
  width: 100%;
}

.nav-menu-toggle-icon .line-2 {
  width: 80%;
  margin-left: auto;
}

.main-nav.is-menu-open .nav-menu-toggle-icon .line-1 {
  transform: translateY(6px) rotate(45deg);
}

.main-nav.is-menu-open .nav-menu-toggle-icon .line-2 {
  opacity: 0;
}

.main-nav.is-menu-open .nav-menu-toggle-icon .line-3 {
  transform: translateY(-11px) rotate(-45deg);
}

.main-nav.is-menu-open {
  background: transparent;
  border-color: transparent;
  border-width: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.main-nav.is-menu-open .hero-logo-default {
  opacity: 0;
}

.main-nav.is-menu-open .hero-logo-inverse {
  opacity: 1;
}

.site-menu-overlay {
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.3s ease;
  z-index: 1090;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .slider-arrow,
body.menu-open .hero-dots {
  opacity: 0;
  pointer-events: none;
}

.site-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.site-menu-overlay__backdrop {
  background: rgba(2, 18, 45, 0);
  border: 0;
  inset: 0;
  position: absolute;
}

.site-menu-overlay__panel {
  background:
    radial-gradient(circle at 12% 24%, rgba(220, 168, 58, 0.2), transparent 36%),
    radial-gradient(circle at 86% 12%, rgba(88, 135, 228, 0.22), transparent 40%),
    linear-gradient(148deg, #021836 0%, #042656 56%, #031f4a 100%);
  inset: 0;
  overflow-y: auto;
  padding: 7.15rem 0 2.7rem;
  position: relative;
}

.site-menu-grid {
  align-items: stretch;
  display: grid;
  gap: 2.9rem;
  grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
  min-height: calc(100dvh - 8.8rem);
}

.site-menu-main,
.site-menu-side {
  background: transparent;
  border: 0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: calc(100dvh - 10.1rem);
  padding: clamp(1.4rem, 2.6vw, 2.9rem);
}

.site-menu-links {
  counter-reset: nav-item;
  display: grid;
  gap: 1.7rem;
}

.site-menu-link {
  align-items: baseline;
  color: #fff;
  display: inline-flex;
  font-size: clamp(2.45rem, 5.6vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.8;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: color 0.24s ease, transform 0.24s ease, text-shadow 0.24s ease, opacity 0.24s ease;
}

.site-menu-link::before {
  content: counter(nav-item, decimal-leading-zero);
  counter-increment: nav-item;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-right: 0.95rem;
  transform: translateY(-0.52em);
  transition: color 0.24s ease;
}

.site-menu-link:hover,
.site-menu-link:focus-visible,
.site-menu-link.active {
  color: var(--gold);
  opacity: 1;
  transform: translateX(8px);
  text-shadow: 0 10px 24px rgba(220, 168, 58, 0.24);
}

.site-menu-link:hover::before,
.site-menu-link:focus-visible::before,
.site-menu-link.active::before {
  color: rgba(255, 219, 148, 0.78);
}

.site-menu-links:hover .site-menu-link:not(:hover):not(.active) {
  opacity: 0.78;
}

.site-menu-nav-column {
  justify-content: center;
  padding-left: clamp(1rem, 2vw, 2rem);
  padding-top: clamp(1rem, 0.8vw, 0.6rem);
}

.site-menu-contact-column {
  
  gap: 1.4rem;
  justify-content: space-between;
  padding-top: clamp(1rem, 1.4vw, 1.3rem);
}

.site-menu-donate {
  align-self: auto;
  min-height: 44px;
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

.site-menu-contact {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}

.site-menu-contact li {
  align-items: center;
  color: #e7edf9;
  column-gap: 0.7rem;
  display: inline-flex;
  font-size: 1.05rem;
  line-height: 1.4;
}

.site-menu-contact li i {
  color: var(--gold);
  width: 1.06rem;
}

.site-menu-contact a {
  color: inherit;
  text-decoration: none;
}

.site-menu-contact a:hover,
.site-menu-contact a:focus-visible {
  color: var(--gold);
}

.site-menu-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.site-menu-actions {
  align-items: center;
  display: flex;
  gap: 1.05rem;
  justify-content: space-between;
  margin-top: auto;
  width: 100%;
}

.site-menu-social-link {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  height: 2.5rem;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
  transition: border-color 0.24s ease, background-color 0.24s ease, color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
  width: 2.5rem;
}

.site-menu-social-link:hover,
.site-menu-social-link:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: #052553;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(220, 168, 58, 0.34);
}

.site-menu-overlay .site-menu-link,
.site-menu-overlay .site-menu-contact li,
.site-menu-overlay .site-menu-actions {
  opacity: 0;
  transform: translateY(12px);
}

.site-menu-overlay.is-open .site-menu-link,
.site-menu-overlay.is-open .site-menu-contact li,
.site-menu-overlay.is-open .site-menu-actions {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.52s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.52s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.site-menu-overlay.is-open .site-menu-links li:nth-child(1) .site-menu-link { transition-delay: 0.03s; }
.site-menu-overlay.is-open .site-menu-links li:nth-child(2) .site-menu-link { transition-delay: 0.06s; }
.site-menu-overlay.is-open .site-menu-links li:nth-child(3) .site-menu-link { transition-delay: 0.09s; }
.site-menu-overlay.is-open .site-menu-links li:nth-child(4) .site-menu-link { transition-delay: 0.12s; }
.site-menu-overlay.is-open .site-menu-links li:nth-child(5) .site-menu-link { transition-delay: 0.15s; }
.site-menu-overlay.is-open .site-menu-links li:nth-child(6) .site-menu-link { transition-delay: 0.18s; }
.site-menu-overlay.is-open .site-menu-contact li:nth-child(1) { transition-delay: 0.17s; }
.site-menu-overlay.is-open .site-menu-contact li:nth-child(2) { transition-delay: 0.2s; }
.site-menu-overlay.is-open .site-menu-contact li:nth-child(3) { transition-delay: 0.23s; }
.site-menu-overlay.is-open .site-menu-actions { transition-delay: 0.27s; }

.btn-gold {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(120deg, #dca83a 0%, #e8bc59 52%, #c9922b 100%);
  background-size: 175% 175%;
  background-position: 0 50%;
  border: 1px solid #d6a03a;
  color: #fff;
  box-shadow: 0 8px 18px rgba(220, 168, 58, 0.3);
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.28s ease, background-position 0.38s ease;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: -150% -36%;
  background: linear-gradient(112deg, transparent 44%, rgba(255, 255, 255, 0.3) 50%, transparent 56%);
  transform: translateX(-56%) rotate(8deg);
  transition: transform 0.72s ease;
  pointer-events: none;
  z-index: 0;
}

.btn-gold > * {
  position: relative;
  z-index: 1;
}

.btn-gold .mini-circle {
  transition: transform 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.btn-gold:hover,
.btn-gold:focus {
  background-position: 100% 50%;
  border-color: #efc266;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(220, 168, 58, 0.36);
}

.btn-gold:hover::before,
.btn-gold:focus::before {
  transform: translateX(56%) rotate(8deg);
}

.btn-gold:hover .mini-circle,
.btn-gold:focus .mini-circle {
  transform: translateX(2px) scale(1.04);
  border-color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.15);
}

.btn-gold:active {
  transform: translateY(0);
  box-shadow: 0 8px 16px rgba(220, 168, 58, 0.26);
}

.hero-content-row {
  height: 100%;
  padding-bottom: 3.3rem;
  padding-top: 4.8rem;
}

.hero-copy {
  max-width: 80%;
  margin-bottom: 2.5rem;
}

.script-title {
  font-family: 'Knewave', 'Montserrat', sans-serif;
  font-size: clamp(2.7rem, 7vw, 4.65rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.script-second-line {
  margin-top: -0.32rem;
}

.text-gold {
  color: var(--gold) !important;
}

.hero-stroke {
  width: 180px;
  height: 6px;
  background: var(--gold);
  border-radius: 999px;
}

.hero-title {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.06;
  font-weight: 700;
  color: #fff;
  max-width: 690px;
}

.hero-subtitle {
  color: var(--gold);
  font-size: clamp(1rem, 1.9vw, 1.24rem);
  font-weight: 700;
  line-height: 1.28;
  max-width: 640px;
}

.hero-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  line-height: 1.35;
  max-width: 640px;
}

.mini-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
}

.slider-arrow {
  position: absolute;
  top: 49%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: grid;
  place-items: center;
  transition: 0.25s ease;
}

.slider-arrow.left {
  left: 1.2rem;
}

.slider-arrow.right {
  right: 1.2rem;
}

.slider-arrow:hover {
  background: rgba(220, 168, 58, 0.9);
  border-color: var(--gold);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 0.95rem;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.6rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  transition: 0.3s ease;
}

.dot.active {
  width: 28px;
  background: var(--gold);
}

.section-purpose {
  padding: 3.3rem 0;
  border-top: 1px solid #e6ebf2;
}

.section-kicker {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.section-title {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  font-weight: 700;
}

.section-lead {
  margin-top: 0.8rem;
  font-size: 1.07rem;
  line-height: 1.35;
  color: #5c6677;
}

.purpose-grid {}

.purpose-card {
  position: relative;
  padding: 1rem 0.9rem 0.7rem;
  min-height: 196px;
  transition: transform 0.25s ease;
  text-align: center;
}

.purpose-card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 40px;
  bottom: 40px;
  width: 1px;
  background: #e6ebf1;
}

.purpose-grid > :last-child .purpose-card::after {
  display: none !important;
}

.purpose-card:hover {
  transform: translateY(-4px);
}

.purpose-card .icon-circle {
  margin: 0 auto;
}

.icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f2f5fb;
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.purpose-card h3 {
  margin-top: 0.72rem;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
}

.purpose-card p {
  margin: 0;
  color: #5c6677;
  font-size: 0.95rem;
  line-height: 1.28;
}

.map-wrap {
  position: relative;
  min-height: 300px;
  height: 300px;
}

.world-grid {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  height: 100%;
  border-radius: 18px;
  border: 1px solid #e5eaf3;
  background: linear-gradient(165deg, #fbfdff 0%, #f4f8fd 100%);
}

.world-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 44%, rgba(220, 168, 58, 0.12), transparent 22%),
    linear-gradient(transparent 96%, rgba(42, 79, 141, 0.1) 100%);
  z-index: 0;
}

.world-map-art {
  position: absolute;
  inset: 7% 3.5% 7%;
  z-index: 1;
  width: calc(100% - 7%);
  height: calc(100% - 14%);
  object-fit: cover;
  object-position: center;
  opacity: 0.95;
}

.map-legend {
  position: absolute;
  right: 0.45rem;
  top: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.section-impact {
  padding: 3.3rem 0 4.5rem;
  background:
    radial-gradient(circle at 8% 0%, rgba(220, 168, 58, 0.12), transparent 30%),
    radial-gradient(circle at 92% 100%, rgba(3, 31, 74, 0.12), transparent 34%),
    linear-gradient(180deg, #f3f6fb 0%, #eef3fa 100%);
  border-top: 1px solid #e6ebf2;
  border-bottom: 1px solid #e6ebf2;
}

.impact-title {
  text-align: center;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 3rem;
}

.impact-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  border-radius: 999px;
  margin: 0.6rem auto 0;
  background: var(--gold);
}

.impact-lead {
  margin: -2.05rem auto 0;
  max-width: 620px;
  text-align: center;
  color: #3f4f6c;
  font-size: 1rem;
  font-weight: 700;
}

.impact-row {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

.impact-row > [class*='col-'] {
  display: flex;
}

.impact-card {
  position: relative;
  width: 100%;
  border: 1px solid #e2e9f4;
  border-radius: 18px;
  text-align: center;
  padding: 1rem 0.82rem 0.95rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(220, 168, 58, 0.1), transparent 48%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: 0 10px 18px rgba(8, 30, 70, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.impact-card::before {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, rgba(220, 168, 58, 0.15), var(--gold), rgba(220, 168, 58, 0.15));
}

.impact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 168, 58, 0.56);
  box-shadow: 0 16px 28px rgba(8, 30, 70, 0.13);
}

.impact-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  margin: 0 auto 0.48rem;
}

.impact-top i {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f2f5fb;
  color: var(--navy);
  border: 1px solid #e4eaf5;
  display: inline-grid;
  place-items: center;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.impact-card:hover .impact-top i {
  transform: translateY(-2px);
  background: #f7f2e7;
  box-shadow: 0 8px 14px rgba(220, 168, 58, 0.22);
}

.impact-number {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.25rem, 4vw, 2.9rem);
  line-height: 1;
  font-weight: 700;
}

.impact-copy {
  margin: 0 auto;
  color: #364258;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.section-events,
.section-news {
  padding: 6rem 0;
}

.section-partners-home {
  padding: 2.35rem 0 4.4rem;
  background:
    radial-gradient(circle at 10% 0%, rgba(220, 168, 58, 0.1), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.partners-home-shell {
  --partners-gap: 0.95rem;
}

.partners-track-wrap {
  overflow: hidden;
}

.partners-track {
  display: flex;
  gap: var(--partners-gap);
  transition: transform 0.45s ease;
  will-change: transform;
}

.partner-slide {
  flex: 0 0 calc((100% - (var(--partners-gap) * 2)) / 3);
  min-width: 0;
}

.partner-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 116px;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  text-decoration: none;
  background: transparent;
  transition: transform 0.28s ease;
}

.partner-logo-link img {
  width: auto;
  max-width: 100%;
  max-height: 62px;
  object-fit: contain;
  filter: grayscale(1) saturate(0.05) contrast(1.02);
  opacity: 0.82;
  transform: scale(1);
  transition: filter 0.28s ease, opacity 0.28s ease, transform 0.28s ease;
}

.partner-logo-link:hover,
.partner-logo-link:focus-visible {
  transform: translateY(-3px);
}

.partner-logo-link:hover img,
.partner-logo-link:focus-visible img,
.partner-logo-link.is-static:hover img {
  filter: grayscale(0) saturate(1);
  opacity: 1;
  transform: scale(1.04);
}

.partner-logo-link.is-static {
  cursor: default;
}

.partners-dots {
  margin-top: 0.95rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
}

.partners-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(3, 31, 74, 0.24);
  transition: width 0.25s ease, background-color 0.25s ease;
}

.partners-dot.active {
  width: 26px;
  background: var(--gold);
}

.section-subtitle {
  margin: 0 0 2rem;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
}

.section-subtitle::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  border-radius: 999px;
  margin: 0.55rem auto 0;
  background: var(--gold);
}

.section-header-row {
  position: relative;
}

.section-header-link-wrap {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
}

.inline-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.25s ease;
}

.inline-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0.25);
  transform-origin: left center;
  opacity: 0.35;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.inline-link i {
  transition: transform 0.25s ease;
}

.inline-link:hover {
  color: var(--gold);
}

.inline-link:hover::after,
.inline-link:focus-visible::after {
  transform: scaleX(1);
  opacity: 0.95;
}

.inline-link:hover i,
.inline-link:focus-visible i {
  transform: translateX(3px);
}

.news-stage {
  border-radius: 24px;
  border: 1px solid #e1e8f2;
  padding: 1rem;
  background:
    radial-gradient(circle at 5% 5%, rgba(220, 168, 58, 0.14), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.news-feature {
  position: relative;
  min-height: 430px;
  border-radius: 18px;
  overflow: hidden;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
  box-shadow: 0 8px 18px rgba(7, 24, 58, 0.08);
  transition: transform 0.34s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.34s ease;
}

.news-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--news-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 0.62s ease;
}

.news-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(170deg, rgba(3, 31, 74, 0.28), rgba(3, 31, 74, 0.88) 78%);
}

.news-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(7, 24, 58, 0.16);
}

.news-feature:hover::before {
  transform: scale(1.09);
}

.news-feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.chip-light {
  background: #fff;
  color: #0c316c;
}

.news-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.news-feature-content {
  color: #fff;
  max-width: 88%;
  min-width: 0;
}

.news-feature-date {
  margin: 0;
  color: #ffd88e;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-feature-content h4 {
  margin: 0.42rem 0 0;
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  line-height: 1.08;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-feature-content h4 .news-title-link {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.22s ease;
}

.news-title-link:hover {
  color: var(--gold);
}

.event-title-link {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.22s ease;
}

.event-title-link:hover,
.event-title-link:focus-visible {
  color: var(--gold);
}

.news-title-link-light:hover {
  color: #ffd88e;
}

.event-feature .event-title-link {
  color: var(--gold);
}

.news-feature-content p {
  margin: 0.6rem 0 0;
  font-size: 1rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
}

.news-feature-summary {
  line-height: 1.35;
  max-height: calc(1.35em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-wrap: anywhere;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-feature-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(220, 168, 58, 0.9);
  padding-bottom: 0.18rem;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.news-feature-link i {
  transition: transform 0.25s ease;
}

.news-feature-link:hover,
.news-feature-link:focus-visible {
  color: #ffe3a7;
  border-bottom-color: #ffe3a7;
}

.news-feature-link:hover i,
.news-feature-link:focus-visible i {
  transform: translateX(3px);
}

.news-feature-actions {
  margin-top: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.news-feature-actions .chip {
  margin: 0;
  text-decoration: none;
}

.news-stack-card {
  display: grid;
  grid-template-columns: 136px 1fr;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #dce6f2;
  background: #fff;
  min-height: 145px;
  box-shadow: 0 6px 14px rgba(7, 24, 58, 0.06);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s ease;
}

.news-stack-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(8, 30, 70, 0.14);
}

.news-stack-image {
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.6s ease;
}

.news-stack-card:hover .news-stack-image {
  transform: scale(1.1);
}

.news-stack-content {
  padding: 0.78rem 0.86rem 0.92rem;
  min-width: 0;
}

.news-stack-content .chip {
  margin: 0;
}

.news-stack-content h4 {
  margin: 0;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.12;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-stack-content h4 .news-title-link {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-stack-content p {
  margin: 0.55rem 0 0;
  color: #5b6780;
  font-size: 0.93rem;
}

.news-stack-summary {
  line-height: 1.35;
  max-height: calc(1.35em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-wrap: anywhere;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-stack-link {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: #0b3b7e;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(220, 168, 58, 0.9);
  padding-bottom: 0.1rem;
  transition: color 0.24s ease, border-color 0.24s ease;
}

.news-stack-link i {
  transition: transform 0.24s ease;
}

.news-stack-link:hover,
.news-stack-link:focus-visible {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.news-stack-link:hover i,
.news-stack-link:focus-visible i {
  transform: translateX(3px);
}

.news-stack-actions {
  margin-top: 0.45rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.news-stack-actions .chip {
  margin: 0;
  text-decoration: none;
}

.news-quick-panel {
  border-radius: 14px;
  border: 1px dashed #bfd3eb;
  background: linear-gradient(90deg, #f6faff 0%, #f2f8ff 100%);
  padding: 0.86rem 0.95rem;
}

.news-quick-title {
  margin: 0;
  color: #173f7f;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.83rem;
  font-weight: 700;
}

.news-quick-panel ul {
  margin: 0.58rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.44rem;
}

.news-quick-panel li {
  display: flex;
  align-items: flex-start;
  gap: 0.42rem;
  color: #314a72;
  font-size: 0.9rem;
  line-height: 1.3;
}

.news-quick-panel i {
  font-size: 0.46rem;
  color: var(--gold);
  margin-top: 0.37rem;
}

.events-stage {
  position: relative;
  border-radius: 24px;
  padding: 1rem;
  background:
    radial-gradient(circle at 88% 0%, rgba(220, 168, 58, 0.2), transparent 38%),
    radial-gradient(circle at 14% 100%, rgba(3, 31, 74, 0.14), transparent 42%),
    #f8fbff;
  border: 1px solid #e1e8f2;
}

.event-feature {
  position: relative;
  min-height: 430px;
  border-radius: 18px;
  overflow: hidden;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
  box-shadow: 0 8px 18px rgba(7, 24, 58, 0.08);
  transition: transform 0.34s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.34s ease;
}

.event-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--event-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 0.62s ease;
}

.event-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(155deg, rgba(3, 31, 74, 0.3) 0%, rgba(3, 31, 74, 0.85) 76%);
}

.event-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(7, 24, 58, 0.16);
}

.event-feature:hover::before {
  transform: scale(1.09);
}

.event-feature-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.event-month-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #06285f;
  background: #fff;
}

.event-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(4px);
}

.event-live-pill i {
  font-size: 0.5rem;
  color: #ffd35e;
}

.event-feature-body {
  max-width: 88%;
  color: #fff;
}

.event-feature-date {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.event-feature h4 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.65rem, 2.2vw, 2.2rem);
  line-height: 1.05;
  font-weight: 700;
}

.event-feature p {
  margin: 0.55rem 0 0;
  font-size: 1rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

.event-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.event-feature-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: #f2f6ff;
}

.event-feature-meta .fa-location-dot {
  color: var(--gold);
}

.event-cta-link {
  margin-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid rgba(220, 168, 58, 0.9);
  padding-bottom: 0.18rem;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.event-cta-link i {
  transition: transform 0.25s ease;
}

.event-cta-link:hover,
.event-cta-link:focus-visible {
  color: #ffe3a7;
  border-bottom-color: #ffe3a7;
}

.event-cta-link:hover i,
.event-cta-link:focus-visible i {
  transform: translateX(3px);
}

.event-mini {
  display: grid;
  grid-template-columns: 114px 1fr;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dbe5f1;
  background: #fff;
  min-height: 126px;
  box-shadow: 0 6px 14px rgba(7, 24, 58, 0.06);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s ease;
}

.event-mini:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(7, 24, 58, 0.14);
}

.event-mini-date {
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.22rem;
  padding: 0.8rem 0.5rem;
  overflow: hidden;
}

.event-mini-date::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--mini-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.6s ease;
}

.event-mini-date::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(165deg, rgba(6, 31, 70, 0.3), rgba(6, 31, 70, 0.92));
  transition: opacity 0.35s ease;
}

.event-mini:hover .event-mini-date::after {
  transform: scale(1.12);
}

.event-mini:hover .event-mini-date::before {
  opacity: 0.86;
}

.event-mini-date span {
  position: relative;
  z-index: 2;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffe09a;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}

.event-mini-date strong {
  position: relative;
  z-index: 2;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.58);
}

.event-mini-content {
  padding: 0.9rem 0.95rem;
}

.event-mini-content h4 {
  margin: 0;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.1;
  font-weight: 700;
}

.event-mini-content p {
  margin: 0.42rem 0 0;
  color: #51607a;
  font-size: 0.95rem;
}

.event-mini-content a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
  color: #0a397f;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
}

.event-mini-content a i {
  transition: transform 0.25s ease;
}

.event-mini-content a:hover,
.event-mini-content a:focus-visible {
  color: var(--gold);
}

.event-mini-content a:hover i,
.event-mini-content a:focus-visible i {
  transform: translateX(3px);
}

.event-track {
  border-radius: 14px;
  border: 1px dashed #c7d7ea;
  background: #f7fbff;
  padding: 0.85rem 0.9rem;
}

.event-track p {
  margin: 0;
  color: #274f8f;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-track-line {
  margin-top: 0.55rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
}

.event-track-line span {
  position: relative;
  flex: 1;
  text-align: center;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
}

.event-track-line span::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  margin-bottom: 0.42rem;
  background: linear-gradient(to right, #0d3876, #dca83a);
}

.event-card,
.news-card {
  border: 1px solid #e6ebf2;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  height: 100%;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.event-card:hover,
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 26px rgba(8, 30, 70, 0.11);
}

.event-image,
.news-image {
  height: 98px;
  background-size: cover;
  background-position: center;
}

.event-image {
  position: relative;
}

.date-tag {
  position: absolute;
  left: 10px;
  top: 10px;
  border-radius: 10px;
  padding: 0.5rem 0.82rem;
  text-align: center;
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.05;
  color: #fff;
  background: var(--navy);
}

.date-tag strong {
  font-size: 1.35rem;
}

.event-card h4,
.news-content h4 {
  padding: 0.8rem 0.8rem 0;
  margin: 0;
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1.15;
  font-weight: 700;
}

.event-card p,
.event-card a,
.news-content p {
  margin: 0;
  display: block;
  padding: 0.35rem 0.8rem;
  color: #45526b;
  font-size: 0.97rem;
  font-weight: 600;
  text-decoration: none;
}

.event-card a {
  color: var(--navy);
  font-weight: 700;
  padding-bottom: 0.95rem;
}

.news-content {
  padding-bottom: 0.95rem;
}

.chip {
  display: inline-flex;
  margin: 0.85rem 0.85rem 0;
  background: var(--gold);
  color: #0d2e63;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.04em;
  padding: 0.34rem 0.8rem;
  font-weight: 600;
}
.chip:hover {
  background: var(--light-bg);
}

.route-band {
  position: relative;
  overflow: visible;
  background: linear-gradient(to right, #fffcf3 0 100%);
}

.route-left {
  padding: 3.1rem 0;
  padding-right: 2.4rem;
}

.route-title {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  font-weight: 700;
  margin: 0.4rem 0 0;
  word-spacing: -10px;
  letter-spacing: -2px;
}

.route-lead {
  margin: 0.7rem 0 0;
  color: #4f5b70;
  font-size: 1.1rem;
  line-height: 1.35;
}

.route-line-wrap {
  position: relative;
}

.route-line {
  position: absolute;
  left: 1.1875rem;
  right: calc(25% - 1.1875rem);
  bottom: -10px;
  height: 3px;
  background: rgba(220, 168, 58, 0.82);
  border-radius: 999px;
  z-index: 1;
}

.route-steps-row {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 12px;
}

.route-step {
  position: relative;
  padding-top: 0.2rem;
  padding-right: 0.75rem;
}

.route-step .n {
  margin: 0;
  color: var(--gold);
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 700;
}

.route-step .l {
  margin: 0.2rem 0 0;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
}

.step-dot {
  position: absolute;
  left: 0.75rem;
  bottom: -16px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #fffcf3;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(220, 168, 58, 0.18);
  z-index: 2;
}

.quote-column {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.quote-box {
  width: calc(100% + 24px);
  max-width: none;
  margin: -28px -24px -22px 0;
  min-height: calc(100% + 50px);
  background: linear-gradient(90deg, #072a63 0%, #0e458f 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px 58px 34px 58px;
  padding: 2rem 1.65rem 1.55rem 2.1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 28px rgba(2, 20, 52, 0.2);
}

.quote-box::before,
.quote-box::after {
  display: none;
}

.quote-glyph {
  position: absolute;
  top: -2px;
  left: 11px;
  font-size: 5.2rem;
  line-height: 1;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.quote-tag {
  margin: 0 0 0 2.25rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.34rem 0.72rem;
  background: rgba(255, 255, 255, 0.14);
  color: #ffd882;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.quote-box h4 {
  margin: 0.8rem 0 0;
  color: #fff;
  font-size: clamp(1.75rem, 2.8vw, 2.45rem);
  line-height: 1.08;
  font-weight: 700;
}

.quote-box h4 span {
  color: var(--gold);
}

.quote-text {
  margin: 0.82rem 0 0;
  color: #dce5f3;
  font-size: 1rem;
  line-height: 1.35;
}

.quote-points {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.quote-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #edf3ff;
  font-size: 0.92rem;
  line-height: 1.3;
}

.quote-points i {
  color: #f4bf52;
  margin-top: 0.15rem;
  font-size: 0.72rem;
}

.quote-sep {
  height: 1px;
  background: rgba(220, 168, 58, 0.75);
  margin-top: 1rem;
}

.quote-footer {
  margin-top: 0.7rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.8rem;
}

.quote-link {
  color: #ffd882;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.25s ease;
}

.quote-link i {
  transition: transform 0.25s ease;
}

.quote-link:hover,
.quote-link:focus-visible {
  color: #fff1c8;
}

.quote-link:hover i,
.quote-link:focus-visible i {
  transform: translateX(3px);
}

.cta-strip {
  background:
    linear-gradient(120deg, rgba(6, 39, 93, 0.74) 0%, rgba(10, 59, 134, 0.7) 62%, rgba(11, 46, 111, 0.74) 100%),
    url('https://images.unsplash.com/photo-1438232992991-995b7058bbb3?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center bottom; 
}

.cta-story {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.11);
  padding: 1.15rem 1.25rem;
  backdrop-filter: blur(2px);
}

.cta-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.6rem;
  border-radius: 999px;
  padding: 0.3rem 0.72rem;
  background: rgba(255, 255, 255, 0.14);
  color: #ffd88e;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.cta-title-wrap {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  color: #fff;
}

.cta-title-wrap h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.1vw, 3rem);
  font-weight: 700;
  line-height: 1.02;
  text-transform: uppercase;
}

.cta-title-wrap h3 span {
  color: var(--gold);
}

.cta-copy {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  line-height: 1.35;
  max-width: 720px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding-top: 3rem;
  background:
    radial-gradient(circle at 8% 18%, rgba(220, 168, 58, 0.18), transparent 34%),
    radial-gradient(circle at 92% 8%, rgba(67, 117, 214, 0.24), transparent 38%),
    linear-gradient(148deg, #021836 0%, #042656 56%, #031f4a 100%);
}

.site-footer::before,
.site-footer::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
  pointer-events: none;
}

.site-footer::before {
  width: 340px;
  height: 340px;
  right: -120px;
  top: -100px;
  background: radial-gradient(circle, rgba(220, 168, 58, 0.2) 0%, rgba(220, 168, 58, 0) 72%);
}

.site-footer::after {
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 74%);
}

.footer-shell {
  position: relative;
  z-index: 1;
  padding: clamp(1rem, 2vw, 1.4rem);
}

.footer-panel {
  height: 100%;
  padding: 1.05rem 1rem;
  
}

.footer-panel-brand {
  
}

.footer-panel-newsletter {

}

.footer-logo {
  height: 58px;
  width: auto;
  filter: none !important;
  box-shadow: none !important;
}

.footer-title {
  position: relative;
  display: inline-block;
  margin: 0 0 0.92rem;
  padding-bottom: 0.5rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-title::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(220, 168, 58, 0.15) 100%);
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(220, 168, 58, 0.14);
}

.footer-copy {
  color: #d2deef;
  font-size: 0.98rem;
  line-height: 1.48;
}

.site-footer .footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
}

.site-footer .footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(220, 168, 58, 0.45);
  background: rgba(220, 168, 58, 0.08);
  color: #ffd88f;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
  opacity: 1;
  text-decoration: none;
}

.site-footer .footer-social-link:hover,
.site-footer .footer-social-link:focus-visible {
  color: #fff;
  border-color: rgba(255, 218, 143, 0.95);
  background: rgba(220, 168, 58, 0.24);
  transform: translateY(-2px);
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact li a{
  color: #dbe7f7;
  text-decoration: none;
  font-size: 0.97rem;
  transition: color 0.24s ease, transform 0.24s ease;
}

.footer-links a:hover {
  color: #ffd88f;
  transform: translateX(2px);
}

.footer-contact i {
  width: 20px;
  margin-right: 0.28rem;
  color: #ffd88f;
}

.footer-form .form-control {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(2, 19, 46, 0.45);
  color: #fff;
  padding-left: 1rem;
  min-height: 44px;
}

.footer-form .form-control::placeholder {
  color: #b7c5da;
}

.footer-form .form-control:focus {
  box-shadow: none;
  border-color: rgba(255, 219, 148, 0.8);
  background: rgba(2, 19, 46, 0.58);
  color: #fff;
}

.footer-form .btn-gold {
  display: inline-grid;
  place-items: center;
  min-width: 52px;
  padding-left: 0.85rem;
  padding-right: 0.85rem;
  box-shadow: 0 8px 16px rgba(220, 168, 58, 0.28);
}

.footer-form .btn-gold i {
  display: block;
  line-height: 1;
}

.footer-form .btn-gold:hover,
.footer-form .btn-gold:focus,
.footer-form .btn-gold:active {
  transform: none;
  box-shadow: 0 8px 18px rgba(220, 168, 58, 0.3);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #c2d2ea;
  font-size: 0.95rem;
  background: rgba(2, 16, 40, 0.22);
}

.footer-credit-link {
  position: relative;
  display: inline-block;
  color: #d9e7fb;
  font-weight: 100;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-credit-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(220, 168, 58, 0.35) 100%);
  transform: scaleX(0.3);
  transform-origin: left center;
  opacity: 0.75;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-credit-link:hover,
.footer-credit-link:focus-visible {
  color: #ffe2a6;
}

.footer-credit-link:hover::after,
.footer-credit-link:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

body.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

body.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .btn-gold,
  .btn-gold::before,
  .btn-gold .mini-circle,
  .inline-link,
  .inline-link::after,
  .inline-link i,
  .news-feature-link,
  .news-feature-link i,
  .news-feature,
  .news-feature::before,
  .news-stack-card,
  .news-stack-image,
  .event-cta-link,
  .event-cta-link i,
  .event-feature,
  .event-feature::before,
  .event-mini,
  .event-mini-date,
  .event-mini-date::after,
  .event-mini-date::before,
  .map-pulse,
  .event-mini-content a,
  .event-mini-content a i,
  .quote-link,
  .quote-link i,
  .socials a,
  .footer-credit-link,
  .footer-credit-link::after {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 991.98px) {
  :root {
    --container-shell: 80%;
  }

  .public-page-hero {
    padding-top: 110px;
  }

  .main-nav {
    top: 0;
  }

  .nav-menu-toggle {
    column-gap: 0.7rem;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
  }

  .site-menu-overlay__panel {
    padding-top: 6rem;
  }

  .site-menu-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    min-height: auto;
  }

  .site-menu-main,
  .site-menu-side {
    border-radius: 0;
    min-height: auto;
    padding: 1rem;
  }

  .site-menu-link {
    font-size: clamp(1.45rem, 8.2vw, 2.15rem);
  }

  .site-menu-link::before {
    display: none;
  }

  .site-menu-nav-column {
    gap: 0.9rem;
    padding-left: 1rem;
    padding-top: 1.1rem;
  }

  .site-menu-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-menu-donate {
    align-self: flex-start;
  }

  .section-header-link-wrap {
    position: static;
    transform: none;
    text-align: center;
    margin-top: 0.4rem;
  }

  .hero-content-row {
    min-height: 490px;
    padding-top: 0.9rem;
    padding-bottom: 3rem;
  }

  .slider-arrow {
    display: none;
  }

  .route-band {
    background: linear-gradient(to bottom, #fffcf3 0 61%, #052d69 61% 100%);
  }

  .route-left {
    padding-right: 0;
    padding-bottom: 1.2rem;
  }

  .route-title {
    word-spacing: normal;
    letter-spacing: 0;
    font-size: clamp(1.9rem, 5.6vw, 2.55rem);
    line-height: 1.08;
  }

  .route-lead {
    font-size: 1.02rem;
  }

  .route-line {
    position: static;
    left: auto;
    right: auto;
    margin-top: 0;
  }

  .quote-box {
    width: 100%;
    min-height: auto;
    margin: 0;
    border-radius: 18px;
    padding: 2rem;
  }

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

  .cta-story {
    padding: 1rem 1rem 1.05rem;
  }

  .cta-title-wrap {
    gap: 0.72rem;
  }

  .cta-title-wrap h3 {
    font-size: clamp(1.7rem, 4.6vw, 2.45rem);
  }

  .step-dot {
    display: none;
  }

  .map-wrap {
    min-height: 250px;
    height: 250px;
  }

  .map-legend {
    position: static;
    writing-mode: horizontal-tb;
    transform: none;
    text-align: center;
    margin-top: 0.85rem;
    letter-spacing: 0.07em;
  }

  .footer-form .form-control {
    min-width: 0;
  }

  .footer-shell {
    padding: 0.95rem 0.85rem;
    border-radius: 18px;
  }

  .footer-panel {
    padding: 0.9rem 0.82rem;
    border-radius: 14px;
  }

  .purpose-grid > .col-6:nth-child(2n) .purpose-card {
    border-right: none;
  }

  .purpose-grid > .col-6:nth-child(2n) .purpose-card::after {
    display: none;
  }
}

@media (min-width: 1400px) {
  .slider-arrow.left {
    left: 2.1rem;
  }

  .slider-arrow.right {
    right: 2.1rem;
  }
}

@media (min-width: 992px) {
  .route-lead {
    padding-right: 7rem;
  }

  .purpose-grid > .col-lg-3:last-child .purpose-card {
    border-right: none;
  }

  .purpose-grid > .col-lg-3:last-child .purpose-card::after {
    display: none;
  }

  .impact-row > .col-lg-3:last-child .impact-card {
    border-right: none;
  }
}

@media (max-width: 767.98px) {
  :root {
    --container-shell: 90%;
  }

  .public-page-hero {
    padding-top: 98px;
  }

  .hero-content-row {
    height: 100%;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .hero-copy {
    max-width: 100%;
    margin-bottom: 1.6rem;
  }

  .hero-subtitle,
  .hero-text {
    max-width: 100%;
  }

  .hero-text {
    font-size: 1rem;
  }

  .site-footer {
    padding-top: 2.4rem;
  }

  .footer-bottom {
    margin-top: 0.9rem;
    font-size: 0.9rem;
  }

  .footer-bottom .row > [class*='col-'] {
    text-align: center;
  }

  .section-purpose,
  .section-impact,
  .section-partners-home,
  .section-events,
  .section-news {
    padding: 2.4rem 0;
  }

  .events-stage {
    padding: 0.7rem;
  }

  .news-stage {
    padding: 0.7rem;
  }

  .news-feature {
    min-height: 360px;
    padding: 0.88rem;
  }

  .news-feature-content {
    max-width: 100%;
  }

  .news-feature-actions,
  .news-stack-actions {
    flex-wrap: wrap;
  }

  .news-stack-card {
    grid-template-columns: 100px 1fr;
  }

  .event-feature {
    min-height: 360px;
    padding: 0.9rem;
  }

  .event-feature-body {
    max-width: 100%;
  }

  .event-feature-date {
    font-size: 1.95rem;
  }

  .event-mini {
    grid-template-columns: 92px 1fr;
  }

  .cta-story {
    padding: 0.9rem 0.9rem 0.95rem;
  }

  .cta-title-wrap h3 {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
  }

  .cta-copy {
    font-size: 1rem;
  }

  .impact-card {
    border-right: 1px solid #e2e9f4;
    border-bottom: 1px solid #e2e9f4;
    margin-bottom: 0;
  }

  .impact-row > .col-6:nth-last-child(-n + 2) .impact-card {
    margin-bottom: 0;
  }

  .purpose-card {
    border-right: none;
    border-bottom: 1px solid #e6ebf1;
    min-height: 172px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .purpose-card::after {
    display: none;
  }

  .purpose-grid > .col-6:nth-last-child(-n + 2) .purpose-card {
    border-bottom: none;
  }

  .partner-slide {
    flex: 0 0 100%;
  }

  .partner-logo-link {
    min-height: 104px;
  }

  .partner-logo-link img {
    max-height: 56px;
  }
}

@media (max-width: 991.98px) and (min-width: 768px) {
  .partner-slide {
    flex: 0 0 calc((100% - var(--partners-gap)) / 2);
  }
}

@media (max-width: 575.98px) {
  :root {
    --container-shell: 94%;
  }

  .hero-content-row {
    padding-top: 0.5rem;
    padding-bottom: 2.3rem;
  }

  .hero-title {
    font-size: 1.95rem;
    line-height: 1.08;
  }

  .hero-subtitle {
    font-size: 0.96rem;
  }

  .hero-text {
    font-size: 0.95rem;
  }

  .hero-dots {
    bottom: 0.7rem;
    gap: 0.45rem;
  }

  .dot {
    width: 7px;
    height: 7px;
  }

  .dot.active {
    width: 22px;
  }

  .news-feature-content h4,
  .event-feature h4 {
    font-size: 1.45rem;
  }

  .route-step .n {
    font-size: 1.82rem;
  }

  .route-step .l {
    font-size: 0.95rem;
  }

  .quote-box {
    padding: 1.45rem 1.05rem 1.2rem 1.25rem;
    border-radius: 20px;
  }
}

@media (max-height: 760px) and (max-width: 991.98px) {
  .site-menu-overlay__panel {
    padding-top: 5.4rem;
    padding-bottom: 1.8rem;
  }

  .site-menu-grid {
    gap: 1.2rem;
  }

  .site-menu-links {
    gap: 1rem;
  }

  .site-menu-link {
    font-size: clamp(1.4rem, 4.7vw, 3.2rem);
  }
}
