@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,800;1,400;1,600&family=Outfit:wght@300;400;500;600&family=Bebas+Neue&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:    #d4a017;
  --gold2:   #f0c040;
  --red:     #b01020;
  --green:   #0a5c30;
  --dark:    #0d0d0d;
  --dark2:   #141414;
  --dark3:   #1c1c1c;
  --surface: #1e1c18;
  --cream:   #f5eedc;
  --muted:   #8a8070;
  --border:  rgba(212,160,23,0.18);
  --ff-display: 'Playfair Display', serif;
  --ff-head:    'Bebas Neue', sans-serif;
  --ff-body:    'Outfit', sans-serif;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { font-family: var(--ff-display); font-weight: 700; line-height: 1.2; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ══════════════════════════
   NAVIGATION
══════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4%;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--border);
  transition: background 0.3s;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo .flag-bar {
  display: flex; gap: 2px;
  width: 28px;
}
.nav-logo .flag-bar span {
  display: block; width: 6px; height: 28px; border-radius: 2px;
}
.nav-logo .flag-bar span:nth-child(1) { background: var(--red); }
.nav-logo .flag-bar span:nth-child(2) { background: var(--gold2); }
.nav-logo .flag-bar span:nth-child(3) { background: var(--green); }
.nav-logo .logo-text {
  font-family: var(--ff-display); font-size: 16px; font-weight: 600;
  color: var(--cream); letter-spacing: 0.03em; line-height: 1.2;
}
.nav-logo .logo-text span { display: block; font-size: 10px; font-weight: 300; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }

.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: #9a9080;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold); color: var(--dark) !important;
  padding: 8px 20px; border-radius: 4px;
  font-weight: 600; letter-spacing: 0.06em;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--gold2) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* ── Dropdown Menu ── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a::after {
  content: '▼';
  font-size: 8px;
  margin-left: 6px;
  vertical-align: -1px;
  transition: transform 0.2s ease;
}
.nav-dropdown:hover > a::after {
  transform: rotate(180deg);
}
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: rgba(20,20,20,0.98); backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 6px;
  min-width: 160px; padding: 0.5rem 0;
  flex-direction: column; z-index: 1001;
}
.dropdown-menu::before {
  content: ''; position: absolute; top: -12px; left: 0; right: 0;
  height: 12px; background: transparent;
}
.nav-dropdown:hover .dropdown-menu {
  display: flex;
}
.dropdown-menu a {
  padding: 10px 16px; font-size: 12px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: #9a9080; transition: all 0.2s;
  position: relative;
  display: block;
  white-space: nowrap;
}
.dropdown-menu a:hover { color: var(--gold); background: rgba(212,160,23,0.08); }
.dropdown-menu a::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: all 0.3s; }

.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(13,13,13,0.98); backdrop-filter: blur(20px);
  padding: 2rem; z-index: 999;
  border-bottom: 1px solid var(--border);
  flex-direction: column; gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 15px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: #9a9080;
  padding: 0.5rem 0; border-bottom: 0.5px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── Mobile Dropdown ── */
.mobile-dropdown {
  display: flex; flex-direction: column; gap: 0;
}
.mobile-dropdown-toggle {
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-dropdown-toggle::after {
  content: '▼'; font-size: 10px; color: var(--gold);
  transition: transform 0.3s;
}
.mobile-dropdown-menu {
  display: none; flex-direction: column; gap: 0;
  background: rgba(212,160,23,0.08); border-left: 2px solid var(--gold);
  margin: 0.5rem 0 0 0; padding: 0.5rem 0 0 1rem;
}
.mobile-dropdown.open .mobile-dropdown-menu {
  display: flex;
}
.mobile-dropdown.open .mobile-dropdown-toggle::after {
  transform: rotate(180deg);
}
.mobile-dropdown-menu a {
  padding: 0.75rem 0; font-size: 13px; border: none;
}

/* ══════════════════════════
   UTILITY CLASSES
══════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.kente-rule {
  height: 6px; border-radius: 3px; overflow: hidden;
  display: flex; margin: 0 0 3rem;
}
.kente-rule span:nth-child(1) { flex: 3; background: var(--red); }
.kente-rule span:nth-child(2) { flex: 2; background: var(--gold2); }
.kente-rule span:nth-child(3) { flex: 3; background: var(--green); }
.kente-rule span:nth-child(4) { flex: 1; background: var(--dark3); }
.kente-rule span:nth-child(5) { flex: 2; background: var(--gold2); }

.overline {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 0.75rem;
}

.badge {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 2px;
  border: 1px solid var(--gold); color: var(--gold);
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 4px;
  font-family: var(--ff-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; border: none; transition: all 0.25s;
}
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,160,23,0.3); }
.btn-outline { background: transparent; color: var(--cream); border: 1px solid rgba(245,238,220,0.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: #c82030; transform: translateY(-2px); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ── Cards ── */
.card {
  background: var(--dark3); border: 0.5px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }

.card-img { height: 220px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 1.5rem; }
.card-body .overline { margin-bottom: 0.4rem; }
.card-body h3 { font-size: 20px; margin-bottom: 0.6rem; }
.card-body p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Section heading pattern ── */
.section-title { margin-bottom: 3.5rem; }
.section-title h2 { font-size: clamp(36px, 5vw, 56px); }
.section-title p { font-size: 16px; color: var(--muted); max-width: 560px; margin-top: 0.75rem; line-height: 1.7; }

/* ── Page hero ── */
.page-hero {
  min-height: 52vh; display: flex; align-items: flex-end;
  padding-bottom: 140px;
  position: relative; overflow: hidden;
  margin-top: var(--nav-h);
}
.page-hero .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero .bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,1) 0%, rgba(13,13,13,0.6) 50%, rgba(13,13,13,0.3) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(40px,6vw,80px); line-height: 1.05; }
.page-hero .sub { font-size: 18px; color: rgba(245,238,220,0.7); margin-top: 0.75rem; max-width: 560px; }

/* ── Timeline ── */
.timeline { position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}
.tl-item {
  display: grid; grid-template-columns: 1fr 60px 1fr;
  gap: 2rem; margin-bottom: 4rem; align-items: start;
}
.tl-item:nth-child(even) .tl-content { order: 3; }
.tl-item:nth-child(even) .tl-dot    { order: 2; }
.tl-item:nth-child(even) .tl-empty  { order: 1; }
.tl-dot {
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 8px;
}
.tl-dot .dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--dark);
  box-shadow: 0 0 0 1px var(--gold);
  flex-shrink: 0;
}
.tl-content {
  background: var(--dark3); border: 0.5px solid var(--border);
  border-radius: 12px; padding: 1.75rem;
}
.tl-content .era {
  font-family: var(--ff-head); font-size: 13px; letter-spacing: 0.12em;
  color: var(--gold); margin-bottom: 0.5rem;
}
.tl-content h3 { font-size: 20px; margin-bottom: 0.6rem; }
.tl-content p  { font-size: 14px; color: var(--muted); line-height: 1.65; }
.tl-content .tag {
  display: inline-block; font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 2px; margin-bottom: 0.75rem;
}
.tag-empire   { background: rgba(224,212,245,0.12); color: #c8a8f0; border: 1px solid rgba(200,168,240,0.3); }
.tag-colonial { background: rgba(176,16,32,0.15); color: #e88090; border: 1px solid rgba(176,16,32,0.3); }
.tag-modern   { background: rgba(10,92,48,0.2); color: #6cd490; border: 1px solid rgba(10,92,48,0.4); }

/* ── Quote block ── */
.blockquote {
  border-left: 4px solid var(--gold); padding: 1.5rem 2rem;
  background: rgba(212,160,23,0.06); border-radius: 0 8px 8px 0;
  margin: 2.5rem 0;
}
.blockquote p { font-family: var(--ff-display); font-size: 20px; font-style: italic; color: var(--cream); line-height: 1.5; }
.blockquote cite { display: block; font-size: 13px; color: var(--gold); margin-top: 0.75rem; font-style: normal; font-weight: 500; }

/* ── Stat strip ── */
.stat-strip {
  background: var(--surface); border: 0.5px solid var(--border);
  border-radius: 16px; padding: 3rem;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2rem; text-align: center;
}
.stat-item .val {
  font-family: var(--ff-head); font-size: 48px; color: var(--gold);
  line-height: 1;
}
.stat-item .lbl { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* ── Person card ── */
.person-card {
  background: var(--dark3); border: 0.5px solid var(--border);
  border-radius: 12px; overflow: hidden; text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.person-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.person-card .avatar {
  height: 200px; overflow: hidden; background: var(--surface);
}
.person-card .avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.person-card .avatar-placeholder {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-size: 64px; color: var(--gold);
}
.person-card .info { padding: 1.25rem 1rem; }
.person-card h3 { font-size: 18px; margin-bottom: 2px; }
.person-card .role { font-size: 11px; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; }
.person-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── Image + text split ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split.reverse .split-img { order: 2; }
.split.reverse .split-text { order: 1; }
.split-img { border-radius: 12px; overflow: hidden; position: relative; }
.split-img img { width: 100%; height: 420px; object-fit: cover; }
.split-img::after {
  content: ''; position: absolute; inset: 0; border-radius: 12px;
  border: 1px solid var(--border);
  pointer-events: none;
}
.split-text h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 1rem; }
.split-text p  { color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }

/* ── Gallery grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}
.gallery-grid .g-item {
  overflow: hidden; border-radius: 8px; position: relative; cursor: pointer;
}
.gallery-grid .g-item.tall { grid-row: span 2; }
.gallery-grid .g-item.wide { grid-column: span 2; }
.gallery-grid .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-grid .g-item:hover img { transform: scale(1.08); }
.gallery-grid .g-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.8) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-grid .g-item:hover .overlay { opacity: 1; }
.gallery-grid .g-item .overlay span { font-size: 13px; font-weight: 500; }

/* ── Video embed ── */
.video-wrapper {
  border-radius: 12px; overflow: hidden; position: relative;
  padding-top: 56.25%;
  background: var(--dark3); border: 0.5px solid var(--border);
  width: 100%;
}
.video-wrapper iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.video-wrapper.video-thumb {
  cursor: pointer;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-wrapper.video-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.28);
}
.video-play {
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  background: rgba(212,160,23,0.95);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.video-play::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 18px solid #111;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
.video-thumb-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 1;
  color: #fff;
  font-size: 14px;
  background: rgba(0,0,0,0.45);
  padding: 0.85rem 1rem;
  border-radius: 10px;
  text-align: center;
}

/* ── Kente pattern banner ── */
.kente-banner {
  height: 80px; overflow: hidden; position: relative;
}
.kente-banner .strips {
  display: flex; height: 100%;
}
.kente-banner .s { flex: 1; }

/* ── Footer ── */
footer {
  background: #080808; border-top: 0.5px solid var(--border);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-top: 1rem; }
.footer-col h4 { font-family: var(--ff-body); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 14px; color: var(--muted); margin-bottom: 0.5rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 0.5px solid var(--border); 
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  font-size: 13px; color: var(--muted);
}
.footer-bottom .left-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-bottom .center-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.footer-bottom .right-content {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
  text-align: right;
}
.footer-bottom .tricolour { 
  display: flex; 
  gap: 6px; 
  align-items: center;
  justify-content: flex-end;
}
.footer-bottom .tricolour span { 
  width: 3px; 
  height: 20px; 
  border-radius: 1px;
}
.footer-bottom .year-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-bottom .motto {
  font-size: 12px;
  font-style: italic;
  color: rgba(212,160,23,0.7);
}

/* ── Animations ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideRight { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }

.fade-up   { animation: fadeUp   0.7s ease forwards; }
.fade-in   { animation: fadeIn   0.7s ease forwards; }
.slide-r   { animation: slideRight 0.7s ease forwards; }

.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.25s; opacity: 0; }
.delay-3 { animation-delay: 0.4s; opacity: 0; }
.delay-4 { animation-delay: 0.55s; opacity: 0; }
.delay-5 { animation-delay: 0.7s; opacity: 0; }

/* ── Responsive ── */
@media(max-width:1200px){.container{padding:0 4%}.section{padding:80px 0}.grid-4{grid-template-columns:repeat(3,1fr)}.footer-grid{grid-template-columns:1.5fr 1fr 1fr 1fr;gap:2rem}}
@media(max-width:1024px){.grid-4{grid-template-columns:repeat(2,1fr)}.stat-strip{grid-template-columns:repeat(2,1fr)}.footer-grid{grid-template-columns:1fr 1fr;gap:2rem}.page-hero{padding-bottom:100px}.page-hero h1{font-size:clamp(32px,5vw,60px)}.page-hero .sub{font-size:16px}.section-title h2{font-size:clamp(32px,4.5vw,48px)}}
@media(max-width:900px){.nav-links{gap:1.5rem}.nav-cta{padding:7px 16px;font-size:12px}.container{padding:0 5%;margin:0 auto}.section{padding:60px 0}.section-sm{padding:45px 0}.grid-2,.grid-3,.split{grid-template-columns:1fr}.grid-4{grid-template-columns:repeat(2,1fr)}.split.reverse .split-img,.split.reverse .split-text{order:unset}.timeline::before{left:20px}.tl-item{grid-template-columns:40px 1fr;gap:1.5rem;margin-bottom:3rem}.tl-empty{display:none}.tl-item:nth-child(even) .tl-content,.tl-item:nth-child(even) .tl-dot,.tl-item:nth-child(even) .tl-empty{order:unset}.tl-dot{padding-top:6px}.tl-dot .dot{width:18px;height:18px}.gallery-grid{grid-template-columns:1fr 1fr;gap:1rem}.gallery-grid .g-item.wide{grid-column:span 1}.card-body{padding:1.2rem}.card-body h3{font-size:18px}.card{border-radius:10px}.btn{padding:12px 24px;font-size:12px}.stat-strip{grid-template-columns:1fr 1fr;padding:2rem}.footer-grid{grid-template-columns:1fr;gap:1.8rem}.footer-col a{margin-bottom:0.4rem;font-size:13px}.footer-bottom{grid-template-columns:1fr;gap:1.5rem;text-align:center;padding:1.5rem 0}.footer-bottom .center-divider{display:none}.footer-bottom .right-content{justify-content:center}.footer-bottom .tricolour{justify-content:center}.page-hero{min-height:50vh;padding-bottom:80px;margin-top:calc(var(--nav-h) + 10px)}.page-hero h1{font-size:clamp(28px,4.5vw,50px);line-height:1.1}.page-hero .sub{font-size:15px;max-width:100%}.kente-rule{margin:0 0 2rem}.section-title{margin-bottom:2.5rem}.section-title p{font-size:15px;max-width:100%}}
@media(max-width:768px){.nav-links{display:none}.hamburger{display:flex}.hamburger.active span:nth-child(1){transform:rotate(45deg) translate(8px,8px)}.hamburger.active span:nth-child(2){opacity:0}.hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(7px,-7px)}.mobile-menu{max-height:calc(100vh - var(--nav-h));overflow-y:auto;padding:1.5rem}.mobile-menu a{font-size:14px;padding:0.6rem 0;border-bottom:0.5px solid rgba(212,160,23,0.1)}.nav-logo .flag-bar{width:24px}.nav-logo .flag-bar span{width:5px;height:24px}.nav-logo .logo-text{font-size:14px}.nav-logo .logo-text span{font-size:8px}.grid-2,.grid-3,.grid-4{grid-template-columns:1fr;gap:1.2rem}.section{padding:50px 0}.section-sm{padding:35px 0}.container{padding:0 5.5%}.gallery-grid{grid-template-columns:1fr 1fr;gap:0.8rem}.gallery-grid .g-item{min-height:180px}.card{border-radius:8px;transition:transform 0.2s}.card:hover{transform:translateY(-4px)}.card-img{height:180px}.card-body{padding:1rem}.card-body h3{font-size:16px;margin-bottom:0.4rem}.badge{font-size:10px;padding:3px 10px}.btn{padding:10px 20px;font-size:11px;letter-spacing:0.08em}.timeline::before{left:16px}.tl-dot .dot{width:16px;height:16px;border-width:3px}.tl-item{margin-bottom:2.5rem}.tl-content{padding-left:0.5rem}.tl-content .year-date{font-size:12px}.tl-content h3{font-size:16px;margin:0.3rem 0}.tl-content p{font-size:13px;line-height:1.5}.page-hero{min-height:48vh;padding-bottom:70px}.page-hero h1{font-size:clamp(24px,3.5vw,40px)}.page-hero .sub{font-size:14px}.overline{font-size:10px;margin-bottom:0.5rem}.section-title h2{font-size:clamp(28px,3.5vw,42px)}.section-title p{font-size:14px}.kente-rule{height:5px;margin:0 0 1.5rem}.stat-strip{grid-template-columns:1fr;padding:1.5rem}.stat-item{text-align:center}.stat-item .number{font-size:32px}.stat-item .label{font-size:12px}.video-wrapper{max-width:100%;margin:0 auto 2rem}.footer-grid{gap:1.2rem;margin-bottom:2rem}.footer-brand p{font-size:13px;margin-top:0.8rem}.footer-col h4{font-size:11px;margin-bottom:0.8rem}.footer-col a{font-size:12px}.footer-bottom{padding:1rem 0;font-size:12px}.footer-bottom .tricolour span{width:2.5px;height:16px}.footer-bottom .motto{font-size:11px}.footer-bottom .year-badge{font-size:10px}}
@media(max-width:600px){.container{padding:0 4%;max-width:100%}.section{padding:40px 0}.section-sm{padding:25px 0}.grid-1{grid-template-columns:1fr}.nav-logo{gap:8px}.nav-logo .flag-bar{width:20px}.nav-logo .flag-bar span{width:4px;height:20px}.nav-logo .logo-text{font-size:12px}.nav-logo .logo-text span{font-size:7px}.hamburger span{width:20px;height:2px}.mobile-menu{padding:1.2rem;gap:1.2rem}.mobile-menu a{font-size:13px;padding:0.5rem 0}.mobile-dropdown-toggle::after{font-size:9px}.mobile-dropdown-menu{padding-left:0.8rem;margin-left:0}.mobile-dropdown-menu a{padding:0.5rem 0;font-size:12px}.page-hero{min-height:45vh;padding-bottom:60px;margin-top:var(--nav-h)}.page-hero h1{font-size:clamp(20px,3vw,30px);line-height:1.15}.page-hero .sub{font-size:13px;line-height:1.5;max-width:100%}.kente-rule{height:4px;margin:0 0 1.2rem}.overline{font-size:9px;margin-bottom:0.4rem;letter-spacing:0.15em}.section-title h2{font-size:clamp(24px,3vw,36px)}.section-title p{font-size:13px;margin-top:0.5rem}.card{border-radius:6px}.card-img{height:150px}.card-body{padding:0.8rem}.card-body .overline{margin-bottom:0.2rem}.card-body h3{font-size:14px;margin-bottom:0.3rem}.card-body p{font-size:12px}.badge{font-size:9px;padding:2px 8px}.btn{padding:9px 18px;font-size:10px;border-radius:3px}.btn-gold{font-weight:500}.grid-2,.grid-3,.grid-4{gap:1rem}.gallery-grid{grid-template-columns:1fr;gap:0.6rem}.gallery-grid .g-item{min-height:140px;border-radius:6px}.gallery-grid .overlay span{font-size:12px}.timeline::before{left:12px}.tl-dot .dot{width:14px;height:14px;border-width:2px}.tl-item{margin-bottom:2rem;gap:1rem}.tl-content{padding-left:0.4rem}.tl-content .year-date{font-size:11px}.tl-content h3{font-size:14px;margin:0.2rem 0}.tl-content p{font-size:12px;line-height:1.4}.stat-strip{padding:1.2rem;gap:1rem}.stat-item .number{font-size:28px}.stat-item .label{font-size:11px}.video-wrapper{margin:0 auto 1.5rem}.footer-grid{gap:1rem;margin-bottom:1.5rem}.footer-brand p{font-size:12px;margin-top:0.6rem}.footer-col{margin-bottom:1rem}.footer-col h4{font-size:10px;margin-bottom:0.6rem;letter-spacing:0.1em}.footer-col a{font-size:11px;margin-bottom:0.3rem}.footer-bottom{padding:0.8rem 0;font-size:11px;gap:1rem}.footer-bottom .tricolour{gap:4px}.footer-bottom .tricolour span{width:2px;height:14px}.footer-bottom .motto{font-size:10px}.video-play{width:56px;height:56px}.video-play::after{border-left:14px solid #111;border-top:9px solid transparent;border-bottom:9px solid transparent}.video-thumb-label{bottom:12px;left:12px;right:12px;font-size:12px;padding:0.6rem 0.8rem;border-radius:6px}}
@media(max-width:480px){.container{padding:0 3.5%}.section{padding:30px 0}.section-sm{padding:20px 0}.nav-logo .flag-bar{width:18px}.nav-logo .flag-bar span{width:3.5px;height:18px}.nav-logo .logo-text{font-size:11px}.nav-logo .logo-text span{font-size:6.5px}.hamburger span{width:18px}.mobile-menu{padding:1rem;gap:1rem}.mobile-menu a{font-size:12px;padding:0.4rem 0;border-bottom:0.5px solid rgba(212,160,23,0.08)}.page-hero{min-height:42vh;padding-bottom:50px}.page-hero h1{font-size:clamp(18px,2.5vw,28px)}.page-hero .sub{font-size:12px;line-height:1.4}.overline{font-size:8px;letter-spacing:0.12em;margin-bottom:0.3rem}.section-title h2{font-size:clamp(20px,2.8vw,32px)}.section-title p{font-size:12px}.kente-rule{height:3px;margin:0 0 1rem}.card-img{height:120px}.card-body{padding:0.6rem}.card-body h3{font-size:13px}.card-body p{font-size:11px}.badge{font-size:8px;padding:2px 6px}.btn{padding:8px 14px;font-size:9px;letter-spacing:0.05em}.gallery-grid{gap:0.5rem}.gallery-grid .g-item{min-height:100px}.tl-dot .dot{width:12px;height:12px;border-width:2px}.tl-item{margin-bottom:1.5rem}.tl-content h3{font-size:13px}.tl-content p{font-size:11px}.stat-item .number{font-size:24px}.stat-item .label{font-size:10px}.footer-col h4{font-size:9px}.footer-col a{font-size:10px}.video-play{width:48px;height:48px}.video-play::after{border-left:12px solid #111;border-top:8px solid transparent;border-bottom:8px solid transparent}}
@media(max-width:375px){.container{padding:0 3.8%}.section{padding:32px 0}.nav-logo .flag-bar{width:19px}.nav-logo .logo-text{font-size:11.5px}.page-hero{min-height:56vh;padding-bottom:85px;margin-top:calc(var(--nav-h) + 8px)}.page-hero h1{font-size:clamp(21px,5.8vw,33px);line-height:1.12;letter-spacing:-0.3px;word-spacing:-2px}.page-hero .sub{font-size:12.5px;line-height:1.65;margin-top:0.8rem;padding:0 0.5rem}.page-hero .bg::after{background:linear-gradient(180deg, rgba(13,13,13,0) 0%, rgba(13,13,13,0.5) 60%, rgba(13,13,13,1) 100%)}.kente-rule{height:4.5px;margin:0 0 1.8rem}.overline{font-size:9.5px;letter-spacing:0.11em;margin-bottom:0.7rem}.section-title h2{font-size:clamp(23px,5.2vw,31px)}.section-title p{font-size:12.5px;margin-top:0.9rem}.card-img{height:155px}.card-body{padding:0.8rem}.card-body h3{font-size:14px}.card-body p{font-size:11.5px}.badge{font-size:9px;padding:3px 9px}.btn{padding:11px 20px;font-size:9px}.grid-2,.grid-3,.grid-4{gap:1.3rem}.gallery-grid{grid-template-columns:1fr;gap:0.9rem}.gallery-grid .g-item{min-height:160px}.timeline::before{left:15px}.tl-dot .dot{width:14px;height:14px}.tl-item{margin-bottom:2.3rem;gap:1.3rem}.tl-content h3{font-size:15px}.tl-content p{font-size:12px}.stat-item .number{font-size:28px}.footer-col a{font-size:10.5px}}
@media(max-width:360px){.container{padding:0 3%}.section{padding:25px 0}.nav-logo .flag-bar{width:16px}.nav-logo .flag-bar span{width:3px;height:16px}.nav-logo .logo-text{font-size:10px}.page-hero h1{font-size:clamp(16px,2.3vw,24px);line-height:1.1}.page-hero .sub{font-size:11px}.section-title h2{font-size:clamp(18px,2.5vw,28px)}.section-title p{font-size:11px}.overline{font-size:7px;margin-bottom:0.25rem}.kente-rule{height:3px;margin:0 0 0.8rem}.card-body{padding:0.5rem}.card-body h3{font-size:12px}.card-body p{font-size:10px}.card-img{height:100px}.badge{font-size:7px}.btn{padding:7px 12px;font-size:8px}.grid-2,.grid-3,.grid-4{gap:0.8rem}.gallery-grid{gap:0.4rem}.gallery-grid .g-item{min-height:80px}.timeline::before{left:10px}.tl-dot .dot{width:10px;height:10px;border-width:1.5px}.tl-item{margin-bottom:1.2rem;gap:0.8rem}.tl-content h3{font-size:12px;margin:0.1rem 0}.tl-content p{font-size:10px;line-height:1.3}.stat-item .number{font-size:20px}.stat-item .label{font-size:9px}.footer-col a{font-size:9px}.footer-bottom{font-size:10px;padding:0.6rem 0}.video-play{width:40px;height:40px}.video-play::after{border-left:10px solid #111;border-top:7px solid transparent;border-bottom:7px solid transparent}}

/* ══════════════════════════
   ENHANCED ADDITIONS
══════════════════════════ */

/* ── Reading progress bar ── */
#reading-progress {
  position: fixed; top: 0; left: 0; z-index: 2000;
  height: 3px; width: 0%;
  background: linear-gradient(to right, var(--red), var(--gold2), var(--green));
  transition: width 0.1s ease;
}

/* ── Back to top button ── */
#back-top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 1900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(212,160,23,0.3);
  transition: all 0.3s ease;
}
#back-top.visible {
  display: flex;
}
#back-top:hover {
  background: var(--gold2);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(212,160,23,0.4);
}
@media(max-width:768px) {
  #back-top {
    width: 40px;
    height: 40px;
    font-size: 18px;
    bottom: 20px;
    right: 15px;
  }
}
@media(max-width:480px) {
  #back-top {
    width: 36px;
    height: 36px;
    font-size: 16px;
    bottom: 65px;
    right: 12px;
  }
}
/* ── EDUCATION ── */
.edu-section {
  background: linear-gradient(180deg, #0D0D0D 0%, #0A0F0A 100%);
  padding: 6rem 5vw;
}
.edu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.edu-card {
  padding: 2.5rem 2rem;
  background: rgba(0, 107, 63, 0.06);
  border: 1px solid rgba(0, 107, 63, 0.25);
  position: relative;
}
.edu-card-num {
  font-family: var(--ff-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0, 107, 63, 0.25);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}
.edu-card-title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 0.75rem;
}
.edu-card-body {
  font-size: 0.875rem;
  color: rgba(250, 248, 242, 0.6);
  line-height: 1.7;
}
.edu-badge {
  display: inline-block;
  margin-top: 1rem;
  background: rgba(0, 107, 63, 0.2);
  border: 1px solid rgba(0, 107, 63, 0.4);
  color: #5CBA85;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
}
 
@media (max-width: 900px) {
  .edu-grid { grid-template-columns: 1fr; }
}
 
 
/* ── Section dots ── */
.section-dots {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sd {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(212,160,23,0.3);
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
}
.sd:hover {
  background: var(--gold);
  transform: scale(1.3);
}
.sd.active {
  background: var(--gold);
  width: 12px;
  height: 12px;
}
@media(max-width:1024px) {
  .section-dots {
    display: none;
  }
}
  transition: width 0.1s linear;
}

/* ── Back to top button ── */
#back-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  border: none; cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 20px rgba(212,160,23,0.4);
}
#back-top.visible { opacity: 1; transform: translateY(0); }
#back-top:hover { background: var(--gold2); transform: translateY(-3px); }

/* ── Pull quote ── */
.pull-quote {
  font-family: var(--ff-display); font-size: clamp(22px,3vw,32px);
  font-style: italic; line-height: 1.4;
  color: var(--cream); text-align: center;
  padding: 3rem 4rem; position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 3rem 0;
}
.pull-quote::before {
  content: '\201C'; position: absolute; top: -0.2em; left: 1rem;
  font-size: 120px; color: rgba(212,160,23,0.12); font-family: var(--ff-display);
  line-height: 1;
}

/* ── Enhanced hero with parallax hint ── */
.hero-bg { will-change: transform; }

/* ── Table of contents sidebar style ── */
.toc-nav {
  position: sticky; top: calc(var(--nav-h) + 1rem);
  background: var(--dark3); border: 0.5px solid var(--border);
  border-radius: 12px; padding: 1.25rem;
}
.toc-nav h5 {
  font-family: var(--ff-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.75rem;
}
.toc-nav a {
  display: block; font-size: 13px; color: var(--muted);
  padding: 4px 0; border-left: 2px solid transparent;
  padding-left: 10px; transition: all 0.2s;
}
.toc-nav a:hover { color: var(--cream); border-left-color: var(--gold); }
.toc-nav a.active { color: var(--gold); border-left-color: var(--gold); }

/* ── Comparison table ── */
.compare-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.compare-table th {
  background: var(--dark3); border: 0.5px solid var(--border);
  padding: 0.75rem 1rem; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold);
  text-align: left;
}
.compare-table td {
  border: 0.5px solid var(--border); padding: 0.75rem 1rem;
  font-size: 14px; color: var(--muted); line-height: 1.5;
}
.compare-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.compare-table tr:hover td { background: rgba(212,160,23,0.04); }

/* ── Notification banner ── */
.info-banner {
  background: rgba(212,160,23,0.1); border: 1px solid rgba(212,160,23,0.25);
  border-radius: 8px; padding: 1rem 1.25rem;
  display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 2rem;
}
.info-banner .ib-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.info-banner p { font-size: 14px; color: var(--cream); line-height: 1.6; margin: 0; }

/* ── Two-tone section ── */
.two-tone {
  background: linear-gradient(to right, var(--dark2) 50%, var(--dark3) 50%);
}

/* ── Image caption overlay ── */
.img-caption-wrap { position: relative; border-radius: 12px; overflow: hidden; }
.img-caption-wrap img { width:100%; display:block; }
.img-caption-wrap .icw-cap {
  position: absolute; bottom:0; left:0; right:0;
  background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, transparent 100%);
  padding: 2rem 1.25rem 1rem;
  font-size: 12px; color: rgba(245,238,220,0.75); font-style: italic;
}

/* ── Content nav dots (section indicators) ── */
.section-dots {
  position: fixed; right: 1.5rem; top: 50%;
  transform: translateY(-50%); z-index: 800;
  display: flex; flex-direction: column; gap: 8px;
}
.section-dots .sd { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: all 0.2s; }
.section-dots .sd.active { background: var(--gold); transform: scale(1.5); }
.section-dots .sd:hover { background: rgba(212,160,23,0.6); }

@media(max-width:768px) {
  .pull-quote { padding: 2rem 1.5rem; font-size: 20px; }
  .section-dots { display: none; }
}
