:root {
  --primary-yellow: #FFCD00;
  --primary-blue: #00AEEF;
  --accent-magenta: #E9377E;
  --dark-text: #1C2526;
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --surface: var(--white);
  --surface-soft: #FFF8D8;
  --surface-strong: var(--dark-text);
  --ink: var(--dark-text);
  --muted: #586467;
  --line: rgba(28, 37, 38, 0.12);
  --brand: var(--primary-blue);
  --brand-dark: var(--dark-text);
  --brand-gold: var(--primary-yellow);
  --brand-red: var(--accent-magenta);
  --brand-rgb: 0, 174, 239;
  --brand-dark-rgb: 28, 37, 38;
  --brand-gold-rgb: 255, 205, 0;
  --brand-red-rgb: 233, 55, 126;
  --shadow: 0 22px 50px rgba(28, 37, 38, 0.11);
  --shadow-soft: 0 14px 30px rgba(28, 37, 38, 0.08);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(var(--brand-gold-rgb), 0.28), transparent 30%),
    radial-gradient(circle at top left, rgba(var(--brand-rgb), 0.18), transparent 24%),
    radial-gradient(circle at center top, rgba(var(--brand-red-rgb), 0.12), transparent 22%),
    linear-gradient(180deg, var(--white) 0%, #f7fbfd 58%, #fffdf6 100%);
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
.brand-text {
  font-family: 'Noto Serif', serif;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

a {
  color: var(--brand-dark);
  text-decoration-color: rgba(var(--brand-rgb), 0.28);
}

a:hover {
  color: var(--brand);
}

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  top: -42px;
  left: 10px;
  background: #000;
  color: #fff;
  padding: 8px 10px;
  z-index: 2000;
}

.skip-link:focus {
  top: 10px;
}

.top-ribbon {
  background: linear-gradient(90deg, var(--brand-gold), var(--brand), var(--brand-red));
  color: var(--brand-dark);
  font-size: 0.85rem;
}

.top-ribbon .container {
  min-height: 44px;
}

.ribbon-copy {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ribbon-links a {
  color: rgba(var(--brand-dark-rgb), 0.84);
  text-decoration: none;
}

.ribbon-links a:hover {
  color: var(--brand-dark);
}

.site-header {
  background: linear-gradient(180deg, rgba(var(--brand-gold-rgb), 0.9), rgba(var(--brand-rgb), 0.2) 76%, rgba(255, 255, 255, 0));
}

.site-header .navbar {
  background:
    linear-gradient(180deg, rgba(var(--brand-gold-rgb), 0.12), rgba(var(--brand-rgb), 0.08)),
    rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(var(--brand-dark-rgb), 0.06);
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(var(--brand-dark-rgb), 0.08);
  background: var(--white);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy small {
  font-size: 0.64rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.brand-text {
  font-size: 0.96rem;
  color: var(--brand-dark);
}

.navbar .nav-link {
  color: var(--brand-dark);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.44rem 0.82rem;
  font-size: 0.9rem;
}

.navbar .nav-link:hover {
  color: var(--brand-dark);
  background: rgba(var(--brand-gold-rgb), 0.28);
}

.navbar .nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-red));
  box-shadow: 0 10px 22px rgba(var(--brand-rgb), 0.16);
}

.navbar .dropdown-menu {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  border-radius: 16px;
  padding: 10px;
  background: #ffffff;
}

.dropdown-item {
  border-radius: 12px;
  padding: 0.58rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.dropdown-item:hover {
  background: rgba(var(--brand-rgb), 0.08);
}

.navbar-toggler {
  border-color: rgba(var(--brand-dark-rgb), 0.16);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(var(--brand-rgb), 0.22);
}

.btn,
.form-control,
.form-select {
  border-radius: 16px;
}

.btn {
  font-weight: 700;
  padding: 0.7rem 1.15rem;
}

.btn-donate {
  background: linear-gradient(135deg, var(--brand), var(--brand-red));
  border: 1px solid rgba(var(--brand-dark-rgb), 0.1);
  color: #ffffff;
}

.btn-donate:hover,
.btn-donate:focus {
  background: linear-gradient(135deg, #009dd8, #d92f73);
  color: #ffffff;
}

.btn-primary {
  background: var(--brand);
  border: 1px solid rgba(var(--brand-rgb), 0.36);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
  background: #009ed9;
  color: var(--white);
}

.btn-accent {
  background: var(--brand-red);
  border: 1px solid rgba(var(--brand-red-rgb), 0.38);
  color: var(--white);
}

.btn-accent:hover,
.btn-accent:focus {
  background: #d92f73;
  color: var(--white);
}

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

.btn-outline-primary {
  border: 1px solid rgba(var(--brand-rgb), 0.4);
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.72);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: rgba(var(--brand-rgb), 0.08);
  color: var(--brand-dark);
  border-color: var(--brand);
}

.section-space {
  padding: 78px 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.2)),
    radial-gradient(circle at top left, rgba(var(--brand-rgb), 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(var(--brand-red-rgb), 0.06), transparent 24%);
  border-top: 1px solid rgba(var(--brand-dark-rgb), 0.05);
  border-bottom: 1px solid rgba(var(--brand-dark-rgb), 0.05);
}

.section-head {
  margin-bottom: 1.6rem;
}

.section-head h2 {
  margin: 0 0 0.35rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}

.eyebrow,
.section-kicker,
.hero-panel-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--brand-dark);
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: min(92vh, 920px);
  background: transparent;
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}

.hero-carousel {
  min-height: inherit;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

.hero-stage {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: min(92vh, 920px);
  padding-top: 86px;
  padding-bottom: 110px;
  color: #fff;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  max-width: 11ch;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.48);
}

.hero-sub {
  max-width: 58ch;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}

.hero-eyebrow {
  color: var(--brand-gold);
}

.hero-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  padding: 1.6rem;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.hero-panel h2 {
  margin: 0.5rem 0 0.25rem;
  color: #fff;
}

.hero-panel p {
  color: rgba(255, 255, 255, 0.84);
}

.hero-panel-role {
  font-weight: 700;
  color: var(--brand-gold) !important;
}

.leader-inline {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  align-items: center;
}

.leader-inline img {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.leader-inline strong {
  display: block;
  color: #fff;
}

.leader-inline span {
  display: block;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}

.hero-control {
  top: auto;
  bottom: 1.2rem;
  width: 3rem;
  opacity: 1;
  z-index: 2;
}

.hero-control.carousel-control-prev {
  left: 1rem;
}

.hero-control.carousel-control-next {
  left: 4.5rem;
  right: auto;
}

.hero-control .carousel-control-prev-icon,
.hero-control .carousel-control-next-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background-size: 52%;
  background-color: rgba(var(--brand-dark-rgb), 0.68);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-indicators {
  margin-bottom: 1.35rem;
  z-index: 2;
  justify-content: flex-end;
  gap: 8px;
  margin-right: 1.15rem;
  margin-left: 1.15rem;
}

.hero-indicators [data-bs-target] {
  width: 26px;
  height: 5px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.52);
}

.hero-indicators .active {
  background: var(--brand-gold);
}

.trust-strip {
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.trust-strip-row {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 2px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid rgba(var(--brand-rgb), 0.14);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--brand-dark);
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
  flex: 0 0 auto;
}

.trust-badge small {
  font-weight: 600;
  font-size: 0.68rem;
  color: var(--muted);
  white-space: nowrap;
}

.metric-card,
.program-card,
.news-card,
.story-card,
.team-card,
.gallery-teaser-card,
.leader-spotlight,
.contact-panel,
.focus-card,
.info-card,
.side-card,
.form-card,
.chart-panel,
.map-panel,
.facebook-panel {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.metric-card {
  padding: 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--brand), var(--brand-gold), var(--brand-red));
}

.metric-value {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 800;
  color: var(--brand-dark);
}

.metric-label {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.program-card,
.news-card,
.story-card,
.team-card,
.gallery-teaser-card,
.leader-spotlight {
  overflow: hidden;
}

.program-card-img,
.news-card-img,
.story-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.program-card-body,
.news-card-body,
.story-card-body,
.team-body,
.leader-spotlight-body {
  padding: 1.2rem;
}

.program-card h2,
.program-card h3,
.news-card h2,
.news-card h3,
.story-card h3,
.team-body h2,
.team-body h3,
.leader-spotlight-body h3 {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
}

.program-card p,
.news-card p,
.story-card p,
.team-body p,
.leader-spotlight-body p,
.contact-panel p,
.focus-card p,
.info-card p,
.side-card p,
.form-card p,
.map-panel p,
.facebook-panel p {
  margin: 0;
  color: var(--muted);
}

.team-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(var(--brand-gold-rgb), 0.18));
}

.team-card-featured,
.leader-spotlight {
  background: transparent;
  color: var(--brand-dark);
}

.team-card-featured .team-body p,
.team-card-featured .team-role,
.leader-spotlight-body p,
.leader-spotlight-body .team-role {
  color: var(--muted) !important;
}

.leader-spotlight {
  height: 100%;
  position: relative;
  width: min(100%, 600px);
  margin-inline: auto;
  padding: 0;
  border: none;
  box-shadow: none;
  isolation: isolate;
}

.leader-spotlight::before {
  content: none;
}

.leader-spotlight::after {
  content: none;
}

.leader-spotlight-image {
  position: relative;
  z-index: 1;
  width: min(58%, 210px);
  max-width: calc(100% - 56px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  margin: 14px auto 0;
  border-radius: 16px;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
}

.team-photo,
.team-photo-lg {
  width: min(62%, 220px);
  max-width: calc(100% - 40px);
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 24px auto 0;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(var(--brand-gold-rgb), 0.34), rgba(var(--brand-red-rgb), 0.18));
  box-shadow: 0 14px 30px rgba(var(--brand-dark-rgb), 0.12);
}

.team-card .team-photo {
  width: min(82%, 300px);
  max-width: calc(100% - 28px);
  margin-top: 18px;
  border-radius: 20px;
}

.team-photo-lg {
  width: min(68%, 250px);
}

.team-role {
  color: var(--brand-dark) !important;
  font-weight: 700;
  margin-bottom: 0.7rem !important;
}

.leader-spotlight-body {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  backdrop-filter: none;
}

.leader-spotlight-body .section-kicker {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  color: var(--brand-dark);
  margin-bottom: 0.8rem;
  font-size: 12px;
}

.leader-spotlight-body h3 {
  font-size: 12px;
  line-height: 1.45;
}

.leader-spotlight-body p,
.leader-spotlight-body .team-role,
.leader-spotlight .inline-link {
  font-size: 12px !important;
  line-height: 1.45;
}

.leader-spotlight .inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 0.9rem;
  padding: 0.68rem 0.94rem;
  border-radius: 12px;
  background: var(--brand-gold);
  color: var(--brand-dark);
  text-decoration: none;
  box-shadow: none;
}

.leader-spotlight .inline-link::after {
  content: '\2192';
  font-size: 1rem;
}

.leadership-section .leadership-frame {
  position: relative;
  padding: clamp(1.35rem, 2.4vw, 2rem);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at top right, rgba(var(--brand-gold-rgb), 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(var(--brand-rgb), 0.12), transparent 30%);
  border: 1px solid rgba(var(--brand-rgb), 0.14);
  box-shadow: 0 28px 58px rgba(var(--brand-dark-rgb), 0.1);
  overflow: hidden;
}

.leadership-section .leadership-frame::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-gold), var(--brand), var(--brand-red));
}

.leadership-section .leadership-head {
  position: relative;
  z-index: 1;
  max-width: 66ch;
  margin-bottom: 1.85rem;
}

.leadership-section .leader-prime {
  width: min(100%, 600px);
  height: 500px;
  margin-inline: auto;
  padding: 18px;
  border: 1px solid rgba(var(--brand-dark-rgb), 0.08);
  border-radius: 30px;
  background: linear-gradient(160deg, rgba(var(--brand-dark-rgb), 0.98), rgba(var(--brand-rgb), 0.94) 56%, rgba(var(--brand-red-rgb), 0.84));
  box-shadow: 0 24px 52px rgba(var(--brand-dark-rgb), 0.18);
  color: #fff;
}

.leadership-section .leader-prime::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 24px;
  border: 1px solid rgba(var(--brand-gold-rgb), 0.34);
  pointer-events: none;
}

.leadership-section .leader-prime::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--brand-gold-rgb), 0.26), transparent 68%);
  pointer-events: none;
}

.leadership-section .leader-prime-media {
  position: relative;
  z-index: 1;
}

.leadership-section .leader-prime .leader-spotlight-image {
  width: 100%;
  max-width: none;
  height: 248px;
  aspect-ratio: auto;
  margin: 0;
  border-radius: 22px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  object-fit: cover;
  object-position: center 20%;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.leadership-section .leader-prime .leader-spotlight-body {
  position: relative;
  z-index: 1;
  height: calc(100% - 266px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 18px 0 0;
  padding: 0;
  background: transparent;
  border: none;
}

.leadership-section .leader-prime .section-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  background: rgba(var(--brand-gold-rgb), 0.18);
  border: 1px solid rgba(var(--brand-gold-rgb), 0.34);
  color: #fff6c4;
  margin-bottom: 0.95rem;
  font-size: 0.72rem;
}

.leadership-section .leader-prime h3 {
  margin: 0 0 0.45rem;
  font-size: 1.42rem;
  color: #fff;
}

.leadership-section .leader-prime .team-role {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.92rem !important;
  margin-bottom: 0.7rem !important;
}

.leadership-section .leader-prime p {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.94rem !important;
  line-height: 1.6;
  max-width: 42ch;
}

.leadership-section .leader-prime .inline-link {
  margin-top: auto;
  padding: 0.78rem 1.02rem;
  border-radius: 14px;
  background: #fff;
  color: var(--brand-dark);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  font-size: 0.9rem !important;
}

.leadership-section .leader-prime .inline-link:hover {
  color: var(--brand-dark);
  transform: translateY(-1px);
}

.leadership-section .leadership-desk-card {
  position: relative;
  border: 1px solid rgba(var(--brand-rgb), 0.12);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(var(--brand-gold-rgb), 0.15));
  box-shadow: 0 18px 34px rgba(var(--brand-dark-rgb), 0.08);
  overflow: hidden;
}

.leadership-section .leadership-desk-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand), var(--brand-red));
}

.leadership-section .leadership-desk-card .team-photo {
  width: calc(100% - 28px);
  max-width: none;
  height: 168px;
  aspect-ratio: auto;
  margin: 14px 14px 0;
  border-radius: 18px;
  border: 1px solid rgba(var(--brand-dark-rgb), 0.08);
  background: #fff;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 14px 26px rgba(var(--brand-dark-rgb), 0.12);
}

.leadership-section .leadership-desk-card .team-body {
  padding: 0.45rem 1rem 1.1rem;
}

.leadership-section .desk-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.72rem;
  margin-bottom: 0.82rem;
  border-radius: 999px;
  background: rgba(var(--brand-rgb), 0.08);
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leadership-section .leadership-desk-card h3 {
  margin: 0 0 0.42rem;
  font-size: 1rem;
}

.leadership-section .leadership-desk-card .team-role {
  color: var(--brand) !important;
  font-size: 0.84rem !important;
  margin-bottom: 0.58rem !important;
}

.leadership-section .leadership-desk-card p {
  color: var(--muted) !important;
  font-size: 0.9rem !important;
  line-height: 1.55;
}

.news-meta {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--muted) !important;
  margin-bottom: 10px !important;
}

.inline-link {
  display: inline-block;
  margin-top: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.icon-pill {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.12), rgba(var(--brand-gold-rgb), 0.3));
  color: var(--brand-dark);
  margin-bottom: 0.9rem;
}

.partner-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.partner-cloud span {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(var(--brand-rgb), 0.08);
  border: 1px solid rgba(var(--brand-rgb), 0.12);
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-panel,
.focus-card,
.info-card,
.side-card,
.form-card,
.chart-panel,
.map-panel,
.facebook-panel {
  padding: 22px;
}

.facebook-embed-wrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

.facebook-embed-wrap.compact {
  min-height: 520px;
}

.facebook-embed {
  width: 100%;
  max-width: 100%;
  display: block;
}

.video-wrap {
  background: #000;
}

.video-wrap video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
}

.gallery-card-media video {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  background: #000;
}

.stack-cards {
  display: grid;
  gap: 14px;
}

.list-check {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-check li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px;
}

.list-check li::before {
  content: '\f26a';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--brand);
}

.quote-block,
.quote-card {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 18px;
  margin: 0;
  box-shadow: var(--shadow-soft);
}

.quote-block p,
.quote-card p {
  margin-bottom: 10px;
  color: #3b3f49;
}

.quote-block footer,
.quote-card footer {
  font-weight: 800;
  font-size: 0.92rem;
}

.quote-block footer span,
.quote-card footer span {
  display: block;
  font-weight: 500;
  color: var(--muted);
}

.page-banner {
  padding: 64px 0 54px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(245, 247, 255, 0.72)),
    radial-gradient(circle at right top, rgba(var(--brand-gold-rgb), 0.28), transparent 30%),
    radial-gradient(circle at left top, rgba(var(--brand-rgb), 0.12), transparent 24%);
}

.page-banner h1 {
  max-width: 18ch;
  margin-bottom: 0.8rem;
}

.page-banner p {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

.breadcrumb {
  --bs-breadcrumb-divider-color: rgba(var(--brand-dark-rgb), 0.55);
}

.breadcrumb a {
  text-decoration: none;
}

.policy-block {
  margin-bottom: 14px;
  border-left: 5px solid var(--brand-gold);
  padding-left: 14px;
}

.doc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.doc-list li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(var(--brand-dark-rgb), 0.12);
}

.doc-list span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.report-table {
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.report-table th {
  background: rgba(var(--brand-rgb), 0.08);
  font-weight: 800;
}

.structure-panel {
  background:
    linear-gradient(180deg, rgba(var(--brand-rgb), 0.08), rgba(255, 255, 255, 0.82)),
    rgba(255, 253, 248, 0.96);
}

.structure-flow {
  display: grid;
  gap: 12px;
}

.flow-card {
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.flow-card strong {
  display: block;
  font-family: 'Noto Serif', serif;
  margin-bottom: 4px;
}

.flow-card span {
  color: var(--muted);
}

.flow-arrow {
  display: grid;
  place-items: center;
  color: var(--brand);
  font-size: 1.2rem;
}

.tag-chip {
  display: inline-block;
  background: rgba(var(--brand-rgb), 0.08);
  border: 1px solid rgba(var(--brand-rgb), 0.12);
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 0.82rem;
  font-weight: 700;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(var(--brand-gold-rgb), 0.28), transparent 22%),
    radial-gradient(circle at 84% 16%, rgba(var(--brand-rgb), 0.28), transparent 24%),
    radial-gradient(circle at 82% 82%, rgba(var(--brand-red-rgb), 0.22), transparent 22%),
    linear-gradient(135deg, var(--brand-dark) 0%, rgba(var(--brand-dark-rgb), 0.94) 38%, rgba(var(--brand-rgb), 0.88) 72%, var(--brand-red) 100%);
  color: rgba(255, 255, 255, 0.96);
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-gold), var(--brand), var(--brand-red));
}

.site-footer::after {
  content: '';
  position: absolute;
  inset: auto -120px -140px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--brand-gold-rgb), 0.18), transparent 64%);
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-surface {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(28, 37, 38, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  box-shadow: 0 28px 56px rgba(10, 18, 20, 0.24);
  backdrop-filter: blur(14px);
}

.footer-surface::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  background:
    linear-gradient(145deg, rgba(var(--brand-rgb), 0.08), transparent 32%),
    linear-gradient(325deg, rgba(var(--brand-red-rgb), 0.08), transparent 30%);
  pointer-events: none;
}

.site-footer strong,
.site-footer h2 {
  color: var(--white);
}

.site-footer {
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--brand-gold);
  text-underline-offset: 0.2em;
  transition: color 0.2s ease, transform 0.2s ease, text-decoration-color 0.2s ease;
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--white);
  text-decoration-color: rgba(var(--brand-gold-rgb), 0.88);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  display: inline-block;
  padding: 2px 0;
}

.footer-links a:hover {
  transform: translateX(3px);
}

.footer-muted {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.newsletter-wrap {
  background:
    linear-gradient(135deg, rgba(var(--brand-rgb), 0.18), rgba(var(--brand-red-rgb), 0.12)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(var(--brand-gold-rgb), 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-footer h2.h6,
.site-footer .h5 {
  font-size: 0.88rem;
}

.site-footer .form-control {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 0.88rem;
}

.site-footer .form-control::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer .form-control:focus {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(var(--brand-gold-rgb), 0.48);
  box-shadow: 0 0 0 0.18rem rgba(var(--brand-rgb), 0.12);
}

.site-footer .btn-outline-light {
  border-color: rgba(var(--brand-gold-rgb), 0.42);
  background: rgba(var(--brand-gold-rgb), 0.08);
  color: var(--white);
  font-size: 0.86rem;
}

.site-footer .btn-outline-light:hover,
.site-footer .btn-outline-light:focus {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: var(--brand-dark);
}

.social-btn {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(10, 18, 20, 0.12);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  font-size: 0.92rem;
}

.social-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.3), rgba(var(--brand-red-rgb), 0.28));
  border-color: rgba(var(--brand-gold-rgb), 0.35);
  box-shadow: 0 16px 28px rgba(10, 18, 20, 0.18);
  color: #fff;
}

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

.fade-up {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(var(--brand-gold-rgb), 0.95);
  outline-offset: 2px;
}

.form-control,
.form-select {
  border-color: rgba(var(--brand-dark-rgb), 0.12);
  min-height: 50px;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(var(--brand-rgb), 0.45);
  box-shadow: 0 0 0 0.18rem rgba(var(--brand-rgb), 0.12);
}

.admin-login-wrap {
  min-height: 60vh;
  display: grid;
  align-items: center;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.admin-table-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-pill.status-published {
  background: #e3f2ff;
  color: #126ab7;
}

.status-pill.status-draft {
  background: #fff3b2;
  color: #7e6500;
}

.admin-hint {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 991.98px) {
  .section-space {
    padding: 60px 0;
  }

  .hero-stage {
    min-height: 760px;
    padding-top: 74px;
  }

  .navbar .nav-link.active,
  .navbar .nav-link:hover {
    background: transparent;
    color: var(--brand);
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-control.carousel-control-prev {
    left: 0.75rem;
  }

  .hero-control.carousel-control-next {
    left: 4.15rem;
  }

  .hero-indicators {
    justify-content: center;
    margin-right: 0;
    margin-left: 0;
  }

  .page-banner h1 {
    max-width: 100%;
  }

  .leader-spotlight {
    width: min(100%, 520px);
    height: auto;
  }

  .leadership-section .leader-prime {
    width: 100%;
    height: auto;
  }

  .leadership-section .leader-prime .leader-spotlight-image {
    height: 260px;
  }

  .leadership-section .leader-prime .leader-spotlight-body {
    height: auto;
  }
}

@media (min-width: 1200px) {
  .leader-spotlight {
    width: 600px;
    height: 500px;
  }
}

@media (max-width: 767.98px) {
  .brand-copy small {
    display: none;
  }

  .hero-title {
    max-width: 100%;
  }

  .leader-inline {
    grid-template-columns: 64px 1fr;
  }

  .team-photo,
  .team-photo-lg {
    width: min(70%, 210px);
  }

  .team-card .team-photo {
    width: min(82%, 250px);
  }

  .leader-spotlight-image {
    width: min(74%, 240px);
  }

  .leadership-section .leadership-frame {
    padding: 1rem;
    border-radius: 26px;
  }

  .leadership-section .leader-prime {
    padding: 14px;
    border-radius: 24px;
  }

  .leadership-section .leader-prime::before {
    inset: 8px;
    border-radius: 18px;
  }

  .leadership-section .leader-prime .leader-spotlight-image {
    width: 100%;
    max-width: none;
    height: 220px;
    border-radius: 18px;
  }

  .leadership-section .leadership-desk-card .team-photo {
    width: calc(100% - 24px);
    height: 186px;
    margin: 12px 12px 0;
  }

  .facebook-embed-wrap {
    min-height: 480px;
  }
}

@media (max-width: 575.98px) {
  .top-ribbon .container {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .hero-stage {
    min-height: 700px;
    padding-bottom: 120px;
  }

  .hero-control {
    display: none;
  }

  .metric-card,
  .program-card,
  .news-card,
  .story-card,
  .team-card,
  .gallery-teaser-card,
  .leader-spotlight,
  .contact-panel,
  .focus-card,
  .info-card,
  .side-card,
  .form-card,
  .chart-panel,
  .map-panel,
  .facebook-panel {
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
