/* ===== TOKENS ===== */
:root {
  --navy:        #081628;
  --navy-mid:    #0F2545;
  --navy-light:  #1A3A6A;
  --coral:       #C8391D;
  --coral-warm:  #E04B2A;
  --coral-pale:  rgba(200,57,29,.12);
  --gold:        #C9A84C;
  --gold-light:  #E2C070;
  --gold-pale:   rgba(201,168,76,.12);
  --white:       #FFFFFF;
  --off-white:   #F7F4EF;
  --gray:        #8B9099;

  --grad-navy:   linear-gradient(135deg,#081628 0%,#1A3A6A 100%);
  --grad-coral:  linear-gradient(135deg,#C8391D 0%,#E04B2A 100%);
  --grad-gold:   linear-gradient(135deg,#C9A84C 0%,#E2C070 100%);

  --shadow-sm:   0 2px 8px rgba(0,0,0,.12);
  --shadow-md:   0 8px 32px rgba(0,0,0,.18);
  --shadow-lg:   0 24px 64px rgba(0,0,0,.28);
  --shadow-glow: 0 0 40px rgba(200,57,29,.25);

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;
  --radius-full: 9999px;

  --ease:        cubic-bezier(.4,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --t-fast:      180ms var(--ease);
  --t-base:      300ms var(--ease);
  --t-slow:      600ms var(--ease);
}

/* ===== RESET ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:80px; font-size:16px; }
body {
  font-family:'Outfit',system-ui,sans-serif;
  background:var(--white);
  color:#1C1C1C;
  line-height:1.7;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img { display:block; max-width:100%; }
a { text-decoration:none; }

h1,h2,h3,h4 {
  font-family:'Cormorant Garamond',Georgia,serif;
  line-height:1.15;
  color:var(--navy);
}
h1 { font-size:clamp(3rem,6vw,5.5rem); font-weight:700; }
h2 { font-size:clamp(2.2rem,4.5vw,3.8rem); font-weight:600; }
h3 { font-size:clamp(1.4rem,2.5vw,1.9rem); font-weight:600; }
em { font-style:italic; color:var(--coral); }

/* ===== SCROLL PROGRESS ===== */
#scrollBar {
  position:fixed; top:0; left:0; height:3px; z-index:9999;
  background:var(--grad-coral); width:0%;
  transition:width .1s linear;
  box-shadow:0 0 12px rgba(200,57,29,.6);
}

/* ===== NAVIGATION ===== */
nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  height:76px; display:flex; align-items:center;
  justify-content:space-between; padding:0 5%;
  transition:background var(--t-base), box-shadow var(--t-base), height var(--t-base);
}
.scrolled {
  background:rgba(8,22,40,.96);
  backdrop-filter:blur(16px);
  box-shadow:0 2px 32px rgba(0,0,0,.3);
  height:66px;
  border-bottom:1px solid rgba(201,168,76,.15);
}
.nav-logo { display:flex; align-items:center; gap:12px; }
.nav-seal {
  width:42px; height:42px; border-radius:50%;
  border:2px solid rgba(201,168,76,.4);
  overflow:hidden; flex-shrink:0;
}
.nav-seal img { width:100%; height:100%; object-fit:cover; }
.nav-brand-name { font-family:'Cormorant Garamond',serif; font-weight:700; font-size:1.3rem; color:#fff; letter-spacing:2px; line-height:1; }
.nav-brand-sub  { font-size:.6rem; color:rgba(255,255,255,.55); letter-spacing:2px; text-transform:uppercase; }

.nav-links { display:flex; gap:28px; align-items:center; }
.nav-links a {
  color:rgba(255,255,255,.85); font-size:.82rem; font-weight:500;
  letter-spacing:.06em; text-transform:uppercase; padding:6px 0; position:relative;
  transition:color var(--t-fast);
}
.nav-links a::after {
  content:''; position:absolute; bottom:-2px; left:0; width:0; height:1.5px;
  background:var(--gold-light); border-radius:var(--radius-full);
  transition:width var(--t-base);
}
.nav-links a:hover, .nav-links a.active { color:var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.nav-cta {
  background:var(--grad-coral) !important; color:#fff !important;
  padding:9px 22px !important; border-radius:var(--radius-full) !important;
  box-shadow:0 4px 16px rgba(200,57,29,.4); font-weight:600 !important;
}
.nav-cta::after { display:none !important; }
.nav-cta:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(200,57,29,.55) !important; }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:8px; background:none; border:none; z-index:1001; }
.hamburger span { width:22px; height:2px; background:#fff; border-radius:2px; transition:var(--t-base); }
.hamburger.active span:nth-child(1) { transform:rotate(45deg) translate(4px,4px); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform:rotate(-45deg) translate(4px,-4px); }

@media(max-width:900px){
  .nav-links {
    position:fixed; top:66px; left:0; right:0;
    background:rgba(8,22,40,.98); backdrop-filter:blur(20px);
    flex-direction:column; padding:40px 32px;
    gap:24px; transform:translateY(-110%); transition:transform var(--t-slow);
    box-shadow:var(--shadow-lg); border-top:1px solid rgba(201,168,76,.15);
  }
  .nav-links.open { transform:translateY(0); }
  .hamburger { display:flex; }
}

/* ===== SECTIONS ===== */
section {
  min-height:100vh; display:flex; flex-direction:column;
  justify-content:center; padding:120px 0; position:relative; overflow:hidden;
}
.container { max-width:1240px; margin:0 auto; padding:0 32px; width:100%; position:relative; z-index:2; }

/* ===== SECTION HEADER ===== */
.section-header { text-align:center; max-width:800px; margin:0 auto 64px; }
.section-tag {
  display:inline-flex; align-items:center; gap:8px;
  font-size:.7rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  color:var(--gold); background:var(--gold-pale);
  border:1px solid rgba(201,168,76,.3); padding:7px 18px;
  border-radius:var(--radius-full); margin-bottom:20px;
}
.section-tag i { color:var(--coral); }
.section-title {
  position:relative; padding-bottom:16px; margin-bottom:20px; color:inherit;
}
.section-title::after {
  content:''; position:absolute; bottom:0; left:50%; transform:translateX(-50%);
  width:48px; height:3px; background:var(--grad-coral); border-radius:var(--radius-full);
}
.section-subtitle {
  font-size:1.05rem; line-height:1.85; color:rgba(255,255,255,.8);
  max-width:640px; margin:0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display:inline-flex; align-items:center; gap:9px;
  padding:15px 30px; border-radius:var(--radius-full);
  font-size:.85rem; font-weight:600; letter-spacing:.06em;
  text-transform:uppercase; transition:all var(--t-base);
  cursor:pointer; border:none; font-family:inherit;
}
.btn-primary {
  background:var(--grad-coral); color:#fff;
  box-shadow:0 6px 24px rgba(200,57,29,.4);
}
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 12px 32px rgba(200,57,29,.55); }
.btn-ghost {
  background:transparent; color:#fff;
  border:1.5px solid rgba(255,255,255,.35);
}
.btn-ghost:hover { border-color:var(--gold); color:var(--gold); transform:translateY(-3px); }

/* ===== HERO ===== */
#hero {
  padding-top:140px; text-align:center; background:none;
}
.hero-bg {
  position:absolute; inset:0; z-index:0;
  background:url('images/hero-bg.jpeg') center/cover no-repeat fixed;
}
.hero-bg::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(160deg,rgba(8,22,40,.85) 0%,rgba(200,57,29,.35) 60%,rgba(8,22,40,.9) 100%);
}
.hero-bg::before {
  content:''; position:absolute; inset:0; z-index:1; opacity:.04;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:256px;
}
.hero-inner { position:relative; z-index:2; max-width:900px; margin:0 auto; }
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(12px); padding:8px 20px; border-radius:var(--radius-full);
  color:var(--gold-light); font-size:.72rem; font-weight:700;
  letter-spacing:.18em; text-transform:uppercase; margin-bottom:28px;
}
.hero-eyebrow i { color:var(--coral); }
.hero-title { color:#fff; margin-bottom:24px; }
.hero-title .line-two { color:var(--gold-light); font-style:italic; }
.hero-lead {
  font-size:1.2rem; color:rgba(255,255,255,.85); max-width:580px;
  margin:0 auto 44px; font-weight:300; line-height:1.9;
}
.hero-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.hero-inner .hero-eyebrow { animation:fadeUp .7s .1s both; }
.hero-inner .hero-title    { animation:fadeUp .7s .25s both; }
.hero-inner .hero-lead     { animation:fadeUp .7s .4s both; }
.hero-inner .hero-actions  { animation:fadeUp .7s .55s both; }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* ===== ABOUT ===== */
#about {
  background: none; position: relative;
}
.about-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('images/about-bg.jpeg') center/cover no-repeat fixed;
}
.about-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(8,22,40,.65);
}
#about .section-title { color: #fff !important; }
#about .section-subtitle { color: rgba(255,255,255,.85) !important; }
#about h3 { color: var(--gold-light); }

.leadership-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:32px; margin-bottom:60px;
}
.leader-card {
  background:#fff; border-radius:var(--radius-lg);
  overflow:hidden; box-shadow:var(--shadow-sm);
  border:1px solid rgba(0,0,0,.06);
  transition:transform var(--t-base), box-shadow var(--t-base);
  display:flex; flex-direction:column;
}
.leader-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-md); }
.leader-photo-wrap {
  width: 100%; aspect-ratio: 1 / 1; overflow: hidden;
  background: var(--gray-200); display: flex; align-items: center; justify-content: center;
}
.leader-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 15%;
}
.leader-body { padding:28px; flex:1; }
.leader-name { font-size:1.5rem; font-weight:700; color:var(--navy); margin-bottom:4px; }
.leader-role {
  color:var(--coral); font-size:.8rem; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase; margin-bottom:14px;
  display:inline-flex; align-items:center; gap:6px;
}
.leader-role::before { content:''; width:20px; height:2px; background:var(--coral); border-radius:var(--radius-full); }
.leader-bio { font-size:.9rem; color:var(--gray); line-height:1.75; }

.mission-row { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-bottom:32px; }
.mission-card {
  background:#fff; border-radius:var(--radius-md);
  padding:28px; border-left:4px solid var(--coral);
  box-shadow:var(--shadow-sm);
  transition:transform var(--t-base), box-shadow var(--t-base);
}
.mission-card:hover { transform:translateX(6px); box-shadow:var(--shadow-md); }
.mission-label {
  display:flex; align-items:center; gap:10px;
  font-size:.72rem; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color:var(--coral); margin-bottom:10px;
}
.mission-label i { font-size:.9rem; }
.mission-card h4 { color:var(--navy); margin-bottom:8px; font-size:1.1rem; }
.mission-card p { color:var(--gray); font-size:.9rem; margin:0; }

.quote-block {
  background:var(--navy); border-radius:var(--radius-lg);
  padding:40px; text-align:center;
  border:1px solid rgba(201,168,76,.2);
  position:relative; overflow:hidden;
}
.quote-block::before {
  content:'\201C'; position:absolute; top:-20px; left:20px;
  font-family:'Cormorant Garamond',serif; font-size:12rem;
  color:rgba(201,168,76,.08); line-height:1; pointer-events:none;
}
.quote-gavel { font-size:2.5rem; color:var(--coral); margin-bottom:20px; }
.quote-text {
  font-family:'Cormorant Garamond',serif; font-size:1.35rem;
  font-style:italic; color:var(--gold-light); line-height:1.7; margin-bottom:16px;
}
.quote-attr { font-size:.82rem; color:var(--coral); font-weight:600; letter-spacing:.08em; }

/* ===== PROGRAMMES ===== */
#framework { background:none; }
.framework-bg {
  position:absolute; inset:0;
  background:url('images/framework-bg.jpeg') center/cover no-repeat fixed;
}
.framework-bg::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(160deg,rgba(8,22,40,.93) 0%,rgba(15,37,69,.9) 100%);
}
.prog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.prog-card {
  background:rgba(255,255,255,.04);
  border:1px solid rgba(201,168,76,.18);
  border-radius:var(--radius-lg); padding:36px 28px;
  text-align:center; position:relative; overflow:hidden;
  transition:transform var(--t-base), background var(--t-base), border-color var(--t-base);
  cursor:default;
}
.prog-card::before { content:''; position:absolute; inset:0; opacity:0; background:var(--grad-coral); transition:opacity var(--t-slow); z-index:0; }
.prog-card:hover { transform:translateY(-10px); border-color:var(--coral); }
.prog-card:hover::before { opacity:.08; }
.prog-card > * { position:relative; z-index:1; }
.prog-icon {
  width:68px; height:68px; border-radius:50%;
  background:var(--coral-pale); border:1px solid rgba(200,57,29,.25);
  display:flex; align-items:center; justify-content:center;
  font-size:1.6rem; color:var(--coral); margin:0 auto 20px;
  transition:all var(--t-base);
}
.prog-card:hover .prog-icon { background:var(--grad-coral); color:#fff; transform:scale(1.1) rotate(5deg); box-shadow:0 8px 24px rgba(200,57,29,.4); }
.prog-title { color:var(--gold-light); font-size:1.25rem; margin-bottom:10px; }
.prog-desc  { color:rgba(255,255,255,.65); font-size:.88rem; line-height:1.7; }

/* ===== PARTNERS ===== */
#partners { background:none; }
.partners-bg {
  position:absolute; inset:0;
  background:url('images/partners-bg.jpeg') center/cover no-repeat fixed;
}
.partners-bg::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg,rgba(8,22,40,.75) 0%,rgba(8,22,40,.65) 100%);
}
.partner-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.partner-card {
  background:rgba(255,255,255,.97);
  border-radius:var(--radius-lg); padding:32px 20px;
  text-align:center; box-shadow:var(--shadow-sm);
  transition:transform var(--t-base), box-shadow var(--t-base);
  position:relative; overflow:hidden;
  border-bottom:3px solid transparent;
}
.partner-card:hover { transform:translateY(-10px); box-shadow:var(--shadow-lg); }
.partner-card:nth-child(1) { border-bottom-color:var(--coral); }
.partner-card:nth-child(2) { border-bottom-color:var(--navy); }
.partner-card:nth-child(3) { border-bottom-color:#D97706; }
.partner-card:nth-child(4) { border-bottom-color:#059669; }
.partner-icon-bg {
  width:58px; height:58px; border-radius:50%; margin:0 auto 14px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; transition:transform var(--t-base);
}
.partner-card:hover .partner-icon-bg { transform:scale(1.12) rotate(4deg); }
.partner-card:nth-child(1) .partner-icon-bg { background:#FEE2E2; color:var(--coral); }
.partner-card:nth-child(2) .partner-icon-bg { background:#DBEAFE; color:var(--navy); }
.partner-card:nth-child(3) .partner-icon-bg { background:#FEF3C7; color:#D97706; }
.partner-card:nth-child(4) .partner-icon-bg { background:#D1FAE5; color:#059669; }
.partner-card h3 { color:var(--navy); font-size:1.15rem; margin-bottom:6px; }
.partner-card h3 a { color: inherit; text-decoration: none; }
.partner-card h3 a:hover { color: var(--coral); }
.partner-card p  { color:var(--gray); font-size:.83rem; margin:0; line-height:1.55; }


/* ===== RESOURCES ===== */
#resources { background:none; }
.resources-bg {
  position:absolute; inset:0;
  background:url('images/resources-bg.jpeg') center/cover no-repeat fixed;
}
.resources-bg::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(160deg,rgba(8,22,40,.88) 0%,rgba(26,58,106,.85) 100%);
}
.res-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.res-card {
  background:rgba(255,255,255,.05);
  border:1px solid rgba(201,168,76,.2); border-radius:var(--radius-lg);
  padding:36px 28px; text-align:center;
  transition:transform var(--t-base), background var(--t-base);
  display:flex; flex-direction:column; align-items:center;
}
.res-card:hover { transform:translateY(-8px); background:rgba(255,255,255,.09); }
.res-icon { font-size:2.2rem; color:var(--coral); margin-bottom:18px; }
.res-card h3 { color:var(--gold-light); margin-bottom:10px; font-size:1.2rem; }
.res-card p  { color:rgba(255,255,255,.65); font-size:.88rem; line-height:1.7; margin-bottom:24px; flex:1; }
.btn-res {
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 22px; border-radius:var(--radius-full);
  font-size:.8rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase;
  border:1.5px solid rgba(201,168,76,.4); color:var(--gold-light);
  transition:all var(--t-base);
}
.btn-res:hover { background:var(--gold-pale); border-color:var(--gold); transform:translateY(-2px); }
button.coming-soon:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ===== EVENTS ===== */
#events { background:none; }
.events-bg {
  position:absolute; inset:0;
  background:url('images/events-bg.png') center/cover no-repeat fixed;
}
.events-bg::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(160deg,rgba(8,22,40,.88) 0%,rgba(8,22,40,.82) 100%);
}
.ev-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.ev-card {
  background:rgba(255,255,255,.04); border:1px solid rgba(201,168,76,.18);
  border-radius:var(--radius-lg); overflow:hidden;
  transition:transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  display:flex; flex-direction:column;
}
.ev-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-glow); border-color:var(--coral); }
.ev-media { height:220px; overflow:hidden; position:relative; flex-shrink:0; }
.ev-media img { width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease); }
.ev-card:hover .ev-media img { transform:scale(1.06); }

.slider-track { position:relative; width:100%; height:100%; }
.slide-img {
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; opacity:0; transition:opacity .6s ease;
}
.slide-img.active { opacity:1; }
.sl-btn {
  position:absolute; top:50%; transform:translateY(-50%);
  background:rgba(8,22,40,.65); backdrop-filter:blur(4px);
  border:none; color:#fff; width:36px; height:36px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; z-index:5; transition:background var(--t-fast);
  font-size:.8rem;
}
.sl-btn:hover { background:var(--coral); }
.sl-btn.prev { left:10px; }
.sl-btn.next { right:10px; }
.sl-dots { position:absolute; bottom:10px; left:50%; transform:translateX(-50%); display:flex; gap:6px; z-index:5; }
.sl-dot { width:7px; height:7px; border-radius:50%; background:rgba(255,255,255,.45); cursor:pointer; transition:all var(--t-fast); }
.sl-dot.active { background:#fff; transform:scale(1.25); }

.ev-body { padding:20px 22px; flex:1; display:flex; flex-direction:column; }
.ev-title { color:var(--gold-light); font-size:1.15rem; margin-bottom:8px; line-height:1.3; }
.ev-desc  { color:rgba(255,255,255,.6); font-size:.84rem; line-height:1.65; margin-bottom:14px; flex:1; }
.ev-tags  { display:flex; flex-wrap:wrap; gap:7px; }
.ev-tag {
  background:rgba(200,57,29,.18); border:1px solid rgba(200,57,29,.3);
  color:var(--coral-warm); padding:3px 12px; border-radius:var(--radius-full);
  font-size:.7rem; font-weight:600;
}

/* ===== CONTACT ===== */
#contact { background:none; }
.contact-bg {
  position:absolute; inset:0;
  background:url('images/contact-bg.jpeg') center/cover no-repeat fixed;
}
.contact-bg::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(160deg,rgba(8,22,40,.82) 0%,rgba(200,57,29,.3) 60%,rgba(8,22,40,.85) 100%);
}
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:32px; }
.form-panel {
  background:rgba(8,22,40,.75); backdrop-filter:blur(20px);
  border:1px solid rgba(201,168,76,.2); border-radius:var(--radius-xl);
  padding:44px;
}
.form-panel h3 { color:var(--gold-light); font-size:1.6rem; text-align:center; margin-bottom:8px; }
.form-panel .fp-sub { text-align:center; color:rgba(255,255,255,.55); font-size:.88rem; margin-bottom:32px; }
.fg { margin-bottom:18px; }
.fg label { display:block; font-size:.7rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--gold); margin-bottom:6px; }
.fg input, .fg select, .fg textarea {
  width:100%; padding:13px 16px;
  background:rgba(255,255,255,.07); border:1.5px solid rgba(201,168,76,.25);
  border-radius:var(--radius-md); color:#fff; font-family:inherit; font-size:.95rem;
  transition:border-color var(--t-base), background var(--t-base);
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline:none; border-color:var(--coral);
  background:rgba(255,255,255,.1);
  box-shadow:0 0 0 3px rgba(200,57,29,.15);
}
.fg select option { background:var(--navy); color:#fff; }
.fg textarea { resize:vertical; min-height:110px; }
.btn-submit {
  width:100%; padding:15px; background:var(--grad-coral);
  color:#fff; border:none; border-radius:var(--radius-full);
  font-family:inherit; font-size:.88rem; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase;
  cursor:pointer; transition:all var(--t-base);
  display:flex; align-items:center; justify-content:center; gap:9px;
}
.btn-submit:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(200,57,29,.5); }
.wa-divider { text-align:center; margin:28px 0 0; padding-top:24px; border-top:1px solid rgba(201,168,76,.15); }
.wa-divider p { color:rgba(255,255,255,.5); font-size:.82rem; margin-bottom:12px; }
.btn-wa {
  display:inline-flex; align-items:center; gap:9px;
  background:#25D366; color:#fff; padding:12px 28px;
  border-radius:var(--radius-full); font-weight:600; font-size:.85rem;
  transition:all var(--t-base);
}
.btn-wa:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(37,211,102,.4); }
.report-panel {
  background:rgba(8,22,40,.75); backdrop-filter:blur(20px);
  border:2px solid rgba(201,168,76,.25); border-radius:var(--radius-xl);
  padding:44px; text-align:center; display:flex; flex-direction:column; align-items:center;
}
.lock-circle {
  width:76px; height:76px; border-radius:50%; background:var(--grad-coral);
  display:flex; align-items:center; justify-content:center;
  font-size:2rem; color:#fff; margin-bottom:20px;
  box-shadow:0 8px 28px rgba(200,57,29,.4);
}
.enc-badge {
  background:rgba(5,150,105,.15); border:1px solid rgba(5,150,105,.3);
  color:#34d399; padding:6px 16px; border-radius:var(--radius-full);
  font-size:.75rem; font-weight:700; letter-spacing:.1em;
  display:inline-flex; align-items:center; gap:8px; margin-bottom:20px;
}
.report-panel h3 { color:var(--gold-light); font-size:1.6rem; margin-bottom:10px; }
.report-panel .rp-sub { color:rgba(255,255,255,.6); font-size:.9rem; margin-bottom:28px; line-height:1.7; }
.btn-report {
  display:flex; align-items:center; justify-content:center; gap:10px;
  width:100%; padding:15px; background:#25D366;
  color:#fff; border:none; border-radius:var(--radius-full);
  font-family:inherit; font-size:.88rem; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; cursor:pointer; text-decoration:none;
  transition:all var(--t-base); margin-bottom:32px;
}
.btn-report:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(37,211,102,.45); }
.contact-details { width:100%; text-align:left; }
.cd-item {
  display:flex; align-items:flex-start; gap:14px;
  padding:14px 0; border-bottom:1px solid rgba(255,255,255,.06);
  color:rgba(255,255,255,.75); font-size:.88rem; line-height:1.6;
}
.cd-item:last-child { border-bottom:none; }
.cd-icon { color:var(--coral); margin-top:2px; flex-shrink:0; width:16px; text-align:center; }
.cd-item a { color:var(--gold-light); transition:color var(--t-fast); }
.cd-item a:hover { color:var(--coral); }

 /* ─── COMPACT FOOTER ─────────────────────────────────── */
    footer {
      min-height: auto;
      background: var(--navy);
      padding: 40px 0 20px;            /* reduced from 80/36 */
      border-top: 1px solid rgba(201,168,76,.15);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 32px;
      margin-bottom: 30px;
    }
    .footer-logo-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 10px;
    }
    .footer-logo-seal {
      width: 34px; height: 34px;
      border-radius: 50%;
      overflow: hidden;
    }
    .footer-logo-seal img { width:100%; height:100%; object-fit:cover; }
    .footer-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: #fff;
    }
    .footer-desc {
      color: rgba(255,255,255,.5);
      font-size: 0.82rem;
      line-height: 1.6;
      max-width: 250px;
    }
    .footer-col h5 {
      color: var(--gold);
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.95rem;
      margin-bottom: 10px;
      padding-bottom: 6px;
      border-bottom: 1px solid rgba(201,168,76,.2);
    }
    .footer-col a {
      display: block;
      color: rgba(255,255,255,.6);
      font-size: 0.82rem;
      padding: 3px 0;
      transition: color var(--t-fast);
    }
    .footer-col a:hover { color: var(--coral); padding-left: 4px; }
    .footer-col a i { width: 16px; margin-right: 6px; }
    .footer-bottom {
      padding-top: 16px;
      border-top: 1px solid rgba(255,255,255,.07);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 0.78rem;
      color: rgba(255,255,255,.4);
    }
    .footer-bottom a { color: rgba(255,255,255,.4); transition: color var(--t-fast); }
    .footer-bottom a:hover { color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
  .prog-grid  { grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .parallax-bg, .hero-bg, .framework-bg, .partners-bg, .resources-bg,
  .events-bg, .contact-bg, .about-bg { background-attachment:scroll; }

@media(max-width:860px){
  .leadership-grid { grid-template-columns:1fr; }
  .leader-card     { max-width:480px; margin:0 auto; }
  .leader-photo-wrap { aspect-ratio:4/3; }
}
@media(max-width:768px){
  section { padding:80px 0; }
  .container { padding:0 20px; }
  .contact-grid    { grid-template-columns:1fr; }
  .partner-grid    { grid-template-columns:repeat(2,1fr); }
  .ev-grid         { grid-template-columns:1fr; }
  .res-grid        { grid-template-columns:1fr; }
  .prog-grid       { grid-template-columns:1fr; }
  .mission-row     { grid-template-columns:1fr; }
  .footer-grid     { grid-template-columns:1fr; }
  .footer-bottom   { flex-direction:column; text-align:center; }
}
@media(max-width:480px){
  h1 { font-size:2.6rem; }
  .partner-grid { grid-template-columns:1fr 1fr; }
}

@media(prefers-reduced-motion:reduce){ *, *::before, *::after{ animation-duration:.01ms !important; transition-duration:.01ms !important; } html{scroll-behavior:auto;} }

.skip-link { position:absolute; top:-40px; left:0; background:var(--coral); color:#fff; padding:10px 20px; z-index:9999; }
.skip-link:focus { top:0; }
a:focus-visible, button:focus-visible, input:focus-visible { outline:2px solid var(--gold); outline-offset:3px; }
