/* ==========================================================================
   ZAMBIA POLICE – STATE HOUSE — Official Website Stylesheet  (v2 multi-page)
   Design system: Institutional Trust & Authority
   Palette: Deep Green / Gold / Black / White
   Typography: Raleway (Google Fonts)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand colours */
  --sh-green-950: #06231A;
  --sh-green-900: #0A2E1F;
  --sh-green-800: #0E3B27;
  --sh-green-700: #14532D;
  --sh-green-600: #1B6B3A;
  --sh-green-100: #E3EEE6;
  --sh-green-050: #F1F6F2;

  --sh-gold-600: #A87E1C;
  --sh-gold-500: #C29A2E;
  --sh-gold-400: #D9B44A;
  --sh-gold-100: #F6EED8;

  --sh-black: #111411;
  --sh-ink: #1D241F;
  --sh-slate: #47524B;
  --sh-mist: #6C776F;

  --sh-white: #FFFFFF;
  --sh-paper: #F7F8F6;
  --sh-line: #E1E6E1;

  /* Typography */
  --font-display: "Raleway", "Segoe UI", system-ui, sans-serif;
  --font-text: "Raleway", "Segoe UI", system-ui, sans-serif;

  /* Rhythm */
  --section-pad: clamp(4rem, 8vw, 6.5rem);
  --radius-sm: 4px;
  --radius-md: 8px;

  /* Elevation scale */
  --shadow-1: 0 1px 3px rgba(17, 20, 17, 0.06), 0 1px 2px rgba(17, 20, 17, 0.04);
  --shadow-2: 0 6px 18px rgba(17, 20, 17, 0.08);
  --shadow-3: 0 18px 44px rgba(17, 20, 17, 0.14);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-fast: 180ms;
  --dur-med: 300ms;

  /* Layout */
  --utility-h: 38px;
  --nav-h: 86px;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: var(--font-text);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--sh-slate);
  background-color: var(--sh-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings: "lnum" 1;
}

/* Gentle page-entry fade (JS adds .page-loaded; no-JS stays visible) */
@media (prefers-reduced-motion: no-preference) {
  body.page-fade { opacity: 0; transition: opacity 450ms var(--ease-out); }
  body.page-fade.page-loaded { opacity: 1; }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--sh-ink);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.01em;
}

img { max-width: 100%; height: auto; }

a {
  color: var(--sh-green-700);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
a:hover { color: var(--sh-gold-600); }

::selection { background: var(--sh-green-700); color: #fff; }

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible {
  outline: 3px solid var(--sh-gold-500);
  outline-offset: 2px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 3000;
  padding: 0.75rem 1.25rem;
  background: var(--sh-green-900);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus { top: 0; color: #fff; }

.container-wide { max-width: 1240px; margin-inline: auto; }

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */
.btn {
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.9rem;
  transition: all var(--dur-med) var(--ease-out);
  cursor: pointer;
}

.btn-gold {
  background: var(--sh-gold-500);
  border: 1px solid var(--sh-gold-500);
  color: var(--sh-green-950);
}
.btn-gold:hover, .btn-gold:focus {
  background: var(--sh-gold-400);
  border-color: var(--sh-gold-400);
  color: var(--sh-green-950);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(194, 154, 46, 0.35);
}

.btn-green {
  background: var(--sh-green-800);
  border: 1px solid var(--sh-green-800);
  color: #fff;
}
.btn-green:hover, .btn-green:focus {
  background: var(--sh-green-700);
  border-color: var(--sh-green-700);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(14, 59, 39, 0.30);
}

.btn-outline-white {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
}
.btn-outline-white:hover, .btn-outline-white:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-green {
  background: transparent;
  border: 1px solid var(--sh-green-700);
  color: var(--sh-green-800);
}
.btn-outline-green:hover, .btn-outline-green:focus {
  background: var(--sh-green-800);
  border-color: var(--sh-green-800);
  color: #fff;
  transform: translateY(-2px);
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--sh-green-800);
}
.link-more i { transition: transform var(--dur-fast) var(--ease-out); }
.link-more:hover i { transform: translateX(5px); }

/* --------------------------------------------------------------------------
   4. Section scaffolding
   -------------------------------------------------------------------------- */
.section { padding-block: var(--section-pad); }
.section-alt { background: var(--sh-paper); }
.section-dark {
  background: var(--sh-green-900);
  color: rgba(255, 255, 255, 0.82);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sh-gold-600);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 2.25rem;
  height: 2px;
  background: var(--sh-gold-500);
}
.eyebrow.centered::after {
  content: "";
  display: inline-block;
  width: 2.25rem;
  height: 2px;
  background: var(--sh-gold-500);
}
.section-dark .eyebrow { color: var(--sh-gold-400); }

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
  max-width: 26ch;
}
.section-title.centered { margin-inline: auto; }
.section-lead {
  font-size: 1.0625rem;
  max-width: 64ch;
  color: var(--sh-slate);
}
.section-dark .section-lead { color: rgba(255, 255, 255, 0.78); }
.text-center .section-title, .text-center .section-lead { margin-inline: auto; }

/* --------------------------------------------------------------------------
   5. Top utility bar
   -------------------------------------------------------------------------- */
.utility-bar {
  background: var(--sh-green-950);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  min-height: var(--utility-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1041;
}
.utility-bar a, .utility-bar button { color: rgba(255, 255, 255, 0.85); }
.utility-bar a:hover, .utility-bar button:hover { color: var(--sh-gold-400); }
.utility-bar .sep { opacity: 0.3; margin-inline: 0.8rem; }
.utility-links { display: flex; align-items: center; white-space: nowrap; }
.utility-btn {
  background: none;
  border: 0;
  padding: 0.1rem 0.2rem;
  font-size: 0.8rem;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--dur-fast) var(--ease-out);
}
.utility-flag {
  display: inline-block;
  width: 18px;
  height: 12px;
  border-radius: 1px;
  background: #1B6B3A;
  position: relative;
  overflow: hidden;
  margin-right: 0.55rem;
  flex: 0 0 auto;
}
.utility-flag::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 6px;
  height: 8px;
  background: linear-gradient(180deg, #C8102E 0 33%, #111 33% 66%, #E8842C 66% 100%);
}
.utility-lang .dropdown-menu {
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  border-color: var(--sh-line);
  box-shadow: var(--shadow-2);
  min-width: 9rem;
}

/* --------------------------------------------------------------------------
   6. Header / Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: var(--utility-h); /* below utility bar until page scrolls */
  left: 0;
  right: 0;
  z-index: 1030;
  transition: top var(--dur-med) var(--ease-out);
}
.site-header.is-scrolled { top: 0; }

.navbar-official {
  padding-block: 1rem;
  background: transparent;
  transition: background-color var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out),
              padding var(--dur-med) var(--ease-out);
}

/* Solid header for inner pages / scrolled state */
.site-header.is-scrolled .navbar-official,
.site-header.header-solid .navbar-official {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 24px rgba(17, 20, 17, 0.10);
}
.site-header.is-scrolled .navbar-official { padding-block: 0.5rem; }

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #fff;
  min-width: 0;
}
.brand:hover { color: #fff; }
.brand-emblem {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}
.brand-text { line-height: 1.25; min-width: 0; }
.brand-title {
  font-weight: 800;
  font-size: 1.13rem;
  letter-spacing: 0.01em;
  display: block;
  white-space: nowrap;
}
.brand-sub {
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sh-gold-400);
  font-weight: 700;
  white-space: nowrap;
}
.site-header.is-scrolled .brand,
.site-header.header-solid .brand { color: var(--sh-green-900); }
.site-header.is-scrolled .brand-sub,
.site-header.header-solid .brand-sub { color: var(--sh-gold-600); }
.site-header.is-scrolled .brand-emblem,
.site-header.header-solid .brand-emblem { filter: none; }

/* Desktop nav list */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-desktop > li { position: relative; }
.nav-desktop .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.6rem 0.85rem;
  position: relative;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-desktop .nav-link .chev {
  font-size: 0.6rem;
  transition: transform var(--dur-fast) var(--ease-out);
}
.nav-desktop .nav-link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--sh-gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease-out);
}
.nav-desktop .nav-link:hover::after,
.nav-desktop .nav-link[aria-current="page"]::after,
.nav-desktop > li.active > .nav-link::after { transform: scaleX(1); }
.nav-desktop .nav-link:hover { color: #fff; }

.site-header.is-scrolled .nav-desktop .nav-link,
.site-header.header-solid .nav-desktop .nav-link { color: var(--sh-ink); }
.site-header.is-scrolled .nav-desktop .nav-link:hover,
.site-header.header-solid .nav-desktop .nav-link:hover { color: var(--sh-green-800); }

/* Dropdown panels (CSS hover / focus-within — keyboard friendly) */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, 12px);
  min-width: 300px;
  background: #fff;
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--sh-gold-500);
  box-shadow: var(--shadow-3);
  padding: 0.9rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out), visibility var(--dur-med);
  z-index: 1035;
}
.nav-dropdown::before { /* hover bridge */
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
li.has-dropdown:hover > .nav-dropdown,
li.has-dropdown:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
li.has-dropdown:hover > .nav-link .chev,
li.has-dropdown:focus-within > .nav-link .chev { transform: rotate(180deg); }

.nav-dropdown a {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--sh-ink);
  transition: background var(--dur-fast) var(--ease-out);
}
.nav-dropdown a:hover,
.nav-dropdown a:focus { background: var(--sh-green-050); color: var(--sh-ink); }
.nav-dropdown a .icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--sh-green-900);
  color: var(--sh-gold-400);
  font-size: 0.95rem;
}
.nav-dropdown a .t {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--sh-green-900);
  line-height: 1.35;
}
.nav-dropdown a .d {
  display: block;
  font-size: 0.78rem;
  color: var(--sh-mist);
  line-height: 1.45;
}
.nav-dropdown a[aria-current="page"] .t { color: var(--sh-gold-600); }

/* Mega variant (two columns) */
.nav-dropdown.mega { min-width: 620px; }
.nav-dropdown.mega .mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.15rem 0.75rem;
}
.mega-head {
  grid-column: 1 / -1;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sh-gold-600);
  padding: 0.35rem 0.85rem 0.55rem;
  border-bottom: 1px solid var(--sh-line);
  margin-bottom: 0.45rem;
}

/* Right-aligned dropdowns stay on-screen */
.nav-desktop > li:last-of-type .nav-dropdown,
.nav-desktop > li:nth-last-of-type(2) .nav-dropdown { left: auto; right: 0; transform: translate(0, 12px); }
.nav-desktop > li:last-of-type:hover > .nav-dropdown,
.nav-desktop > li:last-of-type:focus-within > .nav-dropdown,
.nav-desktop > li:nth-last-of-type(2):hover > .nav-dropdown,
.nav-desktop > li:nth-last-of-type(2):focus-within > .nav-dropdown { transform: translate(0, 0); }

/* Nav utilities: search button + CTA */
.nav-icon-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--dur-med) var(--ease-out);
}
.nav-icon-btn:hover { background: var(--sh-gold-500); border-color: var(--sh-gold-500); color: var(--sh-green-950); }
.site-header.is-scrolled .nav-icon-btn,
.site-header.header-solid .nav-icon-btn { color: var(--sh-green-900); border-color: var(--sh-line); }
.site-header.is-scrolled .nav-icon-btn:hover,
.site-header.header-solid .nav-icon-btn:hover { color: var(--sh-green-950); border-color: var(--sh-gold-500); }
.nav-cta { margin-left: 0.5rem; padding: 0.62rem 1.35rem; }

.navbar-toggler-official {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  font-size: 1.1rem;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
}
.site-header.is-scrolled .navbar-toggler-official,
.site-header.header-solid .navbar-toggler-official {
  color: var(--sh-green-900);
  border-color: var(--sh-green-700);
}

/* Offcanvas mobile nav */
.offcanvas-official {
  background: var(--sh-green-950);
  color: #fff;
  width: min(88vw, 380px);
}
.offcanvas-official .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 1.1rem;
}
.offcanvas-official .btn-close { filter: invert(1) brightness(1.8); }
.mobile-group { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.mobile-link,
.mobile-group-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 0.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 600;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
}
.mobile-link:hover, .mobile-link:focus,
.mobile-group-toggle:hover, .mobile-group-toggle:focus { color: var(--sh-gold-400); }
.mobile-link[aria-current="page"] { color: var(--sh-gold-400); }
.mobile-group-toggle .chev { font-size: 0.7rem; transition: transform var(--dur-med) var(--ease-out); }
.mobile-group-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }
.mobile-sub { padding: 0.15rem 0 0.9rem 0.9rem; display: grid; gap: 0.1rem; }
.mobile-sub a {
  display: block;
  padding: 0.55rem 0.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
  border-left: 2px solid rgba(255, 255, 255, 0.14);
  transition: all var(--dur-fast) var(--ease-out);
}
.mobile-sub a:hover, .mobile-sub a:focus,
.mobile-sub a[aria-current="page"] { color: var(--sh-gold-400); border-left-color: var(--sh-gold-500); }
.offcanvas-official .offcanvas-footer {
  padding: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Search modal */
.search-modal .modal-content {
  background: var(--sh-green-950);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 2.2rem 2rem;
  color: #fff;
}
.search-modal .search-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-bottom: 2px solid var(--sh-gold-500);
  padding-bottom: 0.8rem;
}
.search-modal .search-input-wrap i { color: var(--sh-gold-400); font-size: 1.2rem; }
.search-modal input {
  flex: 1;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.25rem;
  font-family: inherit;
  outline: none;
  min-width: 0;
}
.search-modal input::placeholder { color: rgba(255, 255, 255, 0.45); }
.search-modal .quick-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sh-gold-400);
  margin: 1.6rem 0 0.7rem;
}
.search-modal .quick-links { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.search-modal .quick-links a {
  padding: 0.42rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--dur-fast) var(--ease-out);
}
.search-modal .quick-links a:hover { background: var(--sh-gold-500); border-color: var(--sh-gold-500); color: var(--sh-green-950); }
.search-modal .btn-close { filter: invert(1); position: absolute; top: 1.1rem; right: 1.1rem; }

/* --------------------------------------------------------------------------
   7. Home hero slider
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  max-height: 1080px;
  background: var(--sh-green-950);
}
.hero .swiper { height: 100%; }
.hero-slide { position: relative; height: 100%; overflow: hidden; }
.hero-slide-bg {
  position: absolute;
  inset: -6% 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 7.5s linear;
  will-change: transform;
}
.swiper-slide-active .hero-slide-bg { transform: scale(1); }
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 35, 26, 0.55) 0%, rgba(6, 35, 26, 0.28) 40%, rgba(6, 35, 26, 0.74) 100%),
    linear-gradient(90deg, rgba(6, 35, 26, 0.55) 0%, rgba(6, 35, 26, 0.12) 62%);
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}
.hero-inner { max-width: 780px; color: #fff; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sh-gold-400);
  margin-bottom: 1.3rem;
}
.hero-kicker::before { content: ""; width: 2.5rem; height: 2px; background: var(--sh-gold-500); }

.hero-title {
  font-size: clamp(2.15rem, 5.2vw, 4.1rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.35rem;
  text-wrap: balance;
  letter-spacing: -0.015em;
}
.hero-sub {
  font-size: clamp(0.98rem, 1.35vw, 1.15rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  max-width: 56ch;
  margin-bottom: 2.2rem;
  font-weight: 400;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-kicker, .hero-title, .hero-sub, .hero-actions {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.swiper-slide-active .hero-kicker  { opacity: 1; transform: none; transition-delay: 250ms; }
.swiper-slide-active .hero-title   { opacity: 1; transform: none; transition-delay: 400ms; }
.swiper-slide-active .hero-sub     { opacity: 1; transform: none; transition-delay: 550ms; }
.swiper-slide-active .hero-actions { opacity: 1; transform: none; transition-delay: 700ms; }

.hero-controls {
  position: absolute;
  right: clamp(1rem, 4vw, 3.5rem);
  bottom: clamp(4.5rem, 9vh, 6.5rem);
  z-index: 10;
  display: flex;
  gap: 0.6rem;
}
.hero-nav-btn {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(6, 35, 26, 0.25);
  color: #fff;
  border-radius: 50%;
  font-size: 0.95rem;
  transition: all var(--dur-med) var(--ease-out);
  cursor: pointer;
}
.hero-nav-btn:hover { background: var(--sh-gold-500); border-color: var(--sh-gold-500); color: var(--sh-green-950); }

.hero-pagination {
  position: absolute;
  left: clamp(1rem, 4vw, 3.5rem) !important;
  bottom: clamp(4.6rem, 9vh, 6.6rem) !important;
  width: auto !important;
  z-index: 10;
  display: flex;
  gap: 0.55rem;
}
.hero-pagination .swiper-pagination-bullet {
  width: 34px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  transition: background var(--dur-med) var(--ease-out);
}
.hero-pagination .swiper-pagination-bullet-active { background: var(--sh-gold-500); }

.hero-count {
  position: absolute;
  right: clamp(1rem, 4vw, 3.5rem);
  top: clamp(8rem, 17vh, 10rem);
  z-index: 10;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  font-weight: 600;
}
.hero-count .current { font-size: 1.55rem; font-weight: 800; color: var(--sh-gold-400); }

.hero-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
}
.hero-progress-fill { display: block; height: 100%; width: 0%; background: var(--sh-gold-500); }

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
}
.scroll-indicator:hover { color: #fff; }
.scroll-indicator .mouse {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  margin: 0 auto 0.5rem;
  position: relative;
}
.scroll-indicator .mouse::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 8px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--sh-gold-400);
  animation: scroll-wheel 1.8s ease-in-out infinite;
}
@keyframes scroll-wheel {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* --------------------------------------------------------------------------
   8. Inner page hero + breadcrumbs
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  min-height: clamp(340px, 46vh, 480px);
  display: flex;
  align-items: flex-end;
  background: var(--sh-green-950);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: -12% 0 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 35, 26, 0.62) 0%, rgba(6, 35, 26, 0.45) 45%, rgba(6, 35, 26, 0.85) 100%);
}
.page-hero .container-wide {
  position: relative;
  z-index: 2;
  /* top clearance keeps content below the fixed utility bar + navbar */
  padding-top: clamp(160px, 24vh, 200px);
  padding-bottom: clamp(2.2rem, 5vh, 3.4rem);
}
.page-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sh-gold-400);
  margin-bottom: 0.9rem;
}
.page-hero-kicker::before { content: ""; width: 2.2rem; height: 2px; background: var(--sh-gold-500); }
.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 0.7rem;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.page-hero .lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  max-width: 62ch;
  margin-bottom: 0;
  font-weight: 400;
}

.breadcrumb-official {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  font-size: 0.82rem;
  font-weight: 500;
}
.breadcrumb-official a { color: rgba(255, 255, 255, 0.75); display: inline-flex; align-items: center; gap: 0.45rem; }
.breadcrumb-official a:hover { color: var(--sh-gold-400); }
.breadcrumb-official li { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--sh-gold-400); }
.breadcrumb-official li + li::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.45);
}

/* --------------------------------------------------------------------------
   9. Cards — office / priority / department / leadership
   -------------------------------------------------------------------------- */
.office-card {
  background: #fff;
  border: 1px solid var(--sh-line);
  border-top: 3px solid var(--sh-green-700);
  border-radius: var(--radius-sm);
  padding: 2.1rem 1.8rem;
  height: 100%;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
}
.office-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-3); border-top-color: var(--sh-gold-500); }
.office-card .icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--sh-green-900);
  color: var(--sh-gold-400);
  border-radius: 50%;
  font-size: 1.3rem;
  margin-bottom: 1.3rem;
}
.office-card h3 { font-size: 1.22rem; margin-bottom: 0.65rem; }
.office-card p { font-size: 0.9375rem; margin-bottom: 1.1rem; }

.priority-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--sh-line);
  border-radius: var(--radius-sm);
  padding: 2rem 1.7rem 1.8rem;
  height: 100%;
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.priority-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-3); }
.priority-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--sh-gold-500);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--dur-med) var(--ease-out);
}
.priority-card:hover::before { transform: scaleY(1); }
.priority-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--sh-green-100);
  line-height: 1;
  position: absolute;
  top: 1.3rem;
  right: 1.4rem;
  transition: color var(--dur-med) var(--ease-out);
}
.priority-card:hover .priority-num { color: var(--sh-gold-400); }
.priority-card .icon { font-size: 1.55rem; color: var(--sh-green-700); margin-bottom: 1.1rem; }
.priority-card h3 { font-size: 1.13rem; margin-bottom: 0.55rem; }
.priority-card p { font-size: 0.9rem; margin: 0; }

/* Department cards */
.dept-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--sh-line);
  border-radius: var(--radius-sm);
  padding: 1.9rem 1.6rem 1.7rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.dept-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sh-green-700), var(--sh-gold-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease-out);
}
.dept-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-3); }
.dept-card:hover::after { transform: scaleX(1); }
.dept-card .icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--sh-green-050);
  color: var(--sh-green-700);
  font-size: 1.25rem;
  margin-bottom: 1.15rem;
  transition: all var(--dur-med) var(--ease-out);
}
.dept-card:hover .icon { background: var(--sh-green-900); color: var(--sh-gold-400); }
.dept-card h3 { font-size: 1.08rem; margin-bottom: 0.5rem; }
.dept-card p { font-size: 0.88rem; margin-bottom: 1.2rem; }
.dept-card .link-more { margin-top: auto; font-size: 0.875rem; }
.dept-card-cta { background: var(--sh-green-050); border-color: var(--sh-gold-500); }
.dept-card-cta .icon { background: var(--sh-gold-100); color: var(--sh-gold-600); }

/* Leadership profile cards */
.leader-card {
  background: #fff;
  border: 1px solid var(--sh-line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 100%;
  text-align: center;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.leader-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-3); }
.leader-portrait {
  position: relative;
  background: linear-gradient(160deg, var(--sh-green-900), var(--sh-green-700));
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
.leader-portrait .ring {
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid var(--sh-gold-500);
  display: grid;
  place-items: center;
  color: var(--sh-gold-400);
  font-size: 2.2rem;
  background: rgba(255, 255, 255, 0.04);
}
.leader-portrait .flag-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1B6B3A 0 55%, #C8102E 55% 70%, #111 70% 85%, #E8842C 85% 100%);
}
.leader-card .body { padding: 1.6rem 1.4rem 1.8rem; }
.leader-card h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.leader-card .role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sh-gold-600);
  margin-bottom: 0.7rem;
}
.leader-card p { font-size: 0.875rem; margin: 0; }

/* --------------------------------------------------------------------------
   10. News / press / engagements
   -------------------------------------------------------------------------- */
.news-featured {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 460px;
  height: 100%;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-2);
}
.news-featured img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}
.news-featured:hover img { transform: scale(1.05); }
.news-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 35, 26, 0) 30%, rgba(6, 35, 26, 0.92) 100%);
}
.news-featured-body { position: relative; z-index: 2; padding: 2.2rem; color: #fff; }
.news-featured-body h3, .news-featured-body h2 { color: #fff; font-size: 1.5rem; margin-block: 0.8rem; }
.news-featured-body h3 a, .news-featured-body h2 a { color: #fff; }
.news-featured-body h3 a:hover, .news-featured-body h2 a:hover { color: var(--sh-gold-400); }
.news-featured-body p { color: rgba(255, 255, 255, 0.82); font-size: 0.9375rem; max-width: 55ch; }

.news-tag {
  display: inline-block;
  background: var(--sh-gold-500);
  color: var(--sh-green-950);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.32rem 0.8rem;
  border-radius: 2px;
}

.news-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--sh-line);
}
.news-item:first-child { padding-top: 0; }
.news-item img {
  flex: 0 0 128px;
  width: 128px;
  height: 96px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.news-item .meta {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sh-gold-600);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.news-item h3 { font-size: 1.05rem; line-height: 1.42; margin-bottom: 0.3rem; }
.news-item h3 a { color: var(--sh-ink); }
.news-item h3 a:hover { color: var(--sh-green-700); }
.news-item p { font-size: 0.875rem; margin: 0; }

/* News grid card (news page) */
.news-card {
  background: #fff;
  border: 1px solid var(--sh-line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-3); }
.news-card .media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.news-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.news-card:hover .media img { transform: scale(1.06); }
.news-card .media .news-tag { position: absolute; top: 1rem; left: 1rem; }
.news-card .body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.news-card .meta {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sh-gold-600);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.news-card h3 { font-size: 1.1rem; line-height: 1.45; margin-bottom: 0.55rem; }
.news-card h3 a { color: var(--sh-ink); }
.news-card h3 a:hover { color: var(--sh-green-700); }
.news-card p { font-size: 0.885rem; margin-bottom: 1.1rem; }
.news-card .link-more { margin-top: auto; font-size: 0.875rem; }

/* Press release rows */
.press-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--sh-line);
  border-radius: var(--radius-sm);
  padding: 1.6rem 1.7rem;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.press-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.press-date {
  flex: 0 0 auto;
  width: 74px;
  text-align: center;
  background: var(--sh-green-900);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.4rem;
  border-bottom: 3px solid var(--sh-gold-500);
}
.press-date .d { font-size: 1.6rem; font-weight: 800; color: var(--sh-gold-400); line-height: 1.1; display: block; }
.press-date .m { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255, 255, 255, 0.8); font-weight: 700; }
.press-item .badge-cat {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sh-gold-600);
  border: 1px solid var(--sh-gold-400);
  border-radius: 2px;
  padding: 0.14rem 0.6rem;
  margin-bottom: 0.5rem;
}
.press-item h3 { font-size: 1.12rem; margin-bottom: 0.35rem; line-height: 1.45; }
.press-item h3 a { color: var(--sh-ink); }
.press-item h3 a:hover { color: var(--sh-green-700); }
.press-item p { font-size: 0.9rem; margin-bottom: 0.6rem; }
.press-item .dl { font-size: 0.85rem; font-weight: 700; display: inline-flex; align-items: center; gap: 0.45rem; }

/* Announcements (dark) */
.announce-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.announce-item:last-child { border-bottom: 0; }
.announce-date {
  flex: 0 0 auto;
  width: 72px;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.4rem;
}
.announce-date .d { font-size: 1.55rem; font-weight: 800; color: var(--sh-gold-400); line-height: 1.1; display: block; }
.announce-date .m { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255, 255, 255, 0.75); font-weight: 700; }
.announce-item h3 { font-size: 1.12rem; margin-bottom: 0.35rem; }
.announce-item h3 a { color: #fff; }
.announce-item h3 a:hover { color: var(--sh-gold-400); }
.announce-item p { font-size: 0.9rem; margin: 0; color: rgba(255, 255, 255, 0.72); }
.announce-badge {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sh-gold-400);
  border: 1px solid rgba(217, 180, 74, 0.5);
  border-radius: 2px;
  padding: 0.16rem 0.6rem;
  margin-bottom: 0.5rem;
}

/* Engagements timeline */
.timeline { position: relative; padding-left: 2.1rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--sh-gold-500), var(--sh-green-100));
}
.timeline-item { position: relative; padding-bottom: 2.4rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.1rem;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--sh-gold-500);
  box-shadow: 0 0 0 3px rgba(194, 154, 46, 0.18);
}
.timeline-item .t-date {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sh-gold-600);
  margin-bottom: 0.45rem;
}
.timeline-item h3 { font-size: 1.18rem; margin-bottom: 0.45rem; }
.timeline-item p { font-size: 0.925rem; }

/* Engagement cards */
.engage-card {
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--sh-line);
  height: 100%;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.engage-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-3); }
.engage-card .media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; }
.engage-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.engage-card:hover .media img { transform: scale(1.06); }
.engage-card .body { padding: 1.5rem 1.5rem 1.7rem; }
.engage-card .meta {
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sh-gold-600);
  font-weight: 700;
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.engage-card h3 { font-size: 1.08rem; line-height: 1.42; margin-bottom: 0.45rem; }
.engage-card p { font-size: 0.875rem; margin: 0; }

.engage-swiper { padding-bottom: 3.2rem !important; }
.engage-swiper .swiper-pagination { bottom: 0 !important; }
.engage-swiper .swiper-pagination-bullet { width: 26px; height: 4px; border-radius: 2px; background: var(--sh-line); opacity: 1; }
.engage-swiper .swiper-pagination-bullet-active { background: var(--sh-gold-500); }

.carousel-arrows { display: flex; gap: 0.55rem; }
.carousel-arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--sh-line);
  background: #fff;
  color: var(--sh-green-800);
  transition: all var(--dur-med) var(--ease-out);
  cursor: pointer;
}
.carousel-arrow:hover { background: var(--sh-green-800); border-color: var(--sh-green-800); color: #fff; }

/* --------------------------------------------------------------------------
   11. Gallery + filters + lightbox
   -------------------------------------------------------------------------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--sh-line);
  background: #fff;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sh-slate);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}
.filter-btn:hover { border-color: var(--sh-gold-500); color: var(--sh-green-800); }
.filter-btn.active,
.filter-btn[aria-pressed="true"] {
  background: var(--sh-green-800);
  border-color: var(--sh-green-800);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: var(--sh-green-950);
  display: block;
  width: 100%;
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out), opacity 600ms var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.07); opacity: 0.65; }
.gallery-item.is-hidden { display: none; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 35, 26, 0.85) 100%);
  color: #fff;
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease-out);
  text-align: left;
}
.gallery-item:hover .gallery-overlay,
.gallery-item:focus-visible .gallery-overlay { opacity: 1; }
.gallery-overlay .cat {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sh-gold-400);
  font-weight: 800;
}
.gallery-overlay .cap { font-size: 0.9rem; font-weight: 600; }
.gallery-overlay .zoom {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sh-gold-500);
  color: var(--sh-green-950);
  font-size: 0.85rem;
}

.lightbox-modal .modal-content { background: transparent; border: 0; }
.lightbox-modal img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-modal .caption { color: rgba(255, 255, 255, 0.85); text-align: center; padding-top: 0.9rem; font-size: 0.9375rem; }
.lightbox-modal .btn-close { position: absolute; top: -2.6rem; right: 0; filter: invert(1); opacity: 0.9; z-index: 5; }

/* --------------------------------------------------------------------------
   12. Development tabs / stats / services
   -------------------------------------------------------------------------- */
.dev-tabs .nav-link {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--sh-slate);
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 0.85rem 1.2rem;
  background: transparent;
}
.dev-tabs .nav-link.active { color: var(--sh-green-800); border-bottom-color: var(--sh-gold-500); background: transparent; }
.dev-pane-media img {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-2);
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.dev-stat { border-left: 2px solid var(--sh-gold-500); padding-left: 1.1rem; }
.dev-stat .num {
  font-size: clamp(1.15rem, 1.6vw, 1.7rem);
  font-weight: 800;
  color: var(--sh-green-800);
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.dev-stat .lbl { font-size: 0.82rem; color: var(--sh-mist); }

.service-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  background: #fff;
  border: 1px solid var(--sh-line);
  border-radius: var(--radius-sm);
  padding: 1.7rem 1.5rem;
  height: 100%;
  color: var(--sh-ink);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
}
.service-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); border-color: var(--sh-gold-500); color: var(--sh-ink); }
.service-tile .icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--sh-green-050);
  color: var(--sh-green-700);
  font-size: 1.2rem;
  transition: all var(--dur-med) var(--ease-out);
}
.service-tile:hover .icon { background: var(--sh-green-800); color: var(--sh-gold-400); }
.service-tile h3 { font-size: 1rem; font-weight: 700; margin: 0; }
.service-tile p { font-size: 0.84rem; margin: 0; color: var(--sh-mist); }
.service-tile .go { margin-top: auto; font-size: 0.8125rem; font-weight: 700; color: var(--sh-green-700); display: inline-flex; align-items: center; gap: 0.4rem; }

.stats-band {
  position: relative;
  background:
    linear-gradient(rgba(6, 35, 26, 0.92), rgba(6, 35, 26, 0.92)),
    url("../../images/pexels-droneafrica-30380875.jpg") center / cover no-repeat;
  color: #fff;
}
.stat-cell { text-align: center; padding: 1.4rem 1rem; }
.stat-cell .icon { color: var(--sh-gold-400); font-size: 1.6rem; margin-bottom: 0.8rem; }
.stat-cell .num {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.stat-cell .suffix { color: var(--sh-gold-400); }
.stat-cell .lbl { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.72); margin-top: 0.45rem; font-weight: 600; }
.stat-divider { border-right: 1px solid rgba(255, 255, 255, 0.14); }
@media (max-width: 991.98px) {
  .stat-divider { border-right: 0; }
  .stat-cell { border-bottom: 1px solid rgba(255, 255, 255, 0.10); }
  .stats-row .col-6:nth-last-child(-n+2) .stat-cell { border-bottom: 0; }
}

/* --------------------------------------------------------------------------
   13. Publications
   -------------------------------------------------------------------------- */
.pub-card {
  display: flex;
  gap: 1.2rem;
  background: #fff;
  border: 1px solid var(--sh-line);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  height: 100%;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.pub-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.pub-card .icon {
  flex: 0 0 auto;
  width: 52px;
  height: 62px;
  display: grid;
  place-items: center;
  background: var(--sh-green-050);
  border-radius: var(--radius-sm);
  color: var(--sh-green-700);
  font-size: 1.35rem;
}
.pub-card h3 { font-size: 0.98rem; font-weight: 700; line-height: 1.45; margin-bottom: 0.3rem; }
.pub-card .meta { font-size: 0.78rem; color: var(--sh-mist); margin-bottom: 0.55rem; }
.pub-card .dl { font-size: 0.83rem; font-weight: 700; color: var(--sh-green-700); display: inline-flex; align-items: center; gap: 0.4rem; }
.pub-card .dl:hover { color: var(--sh-gold-600); }

/* --------------------------------------------------------------------------
   14. FAQ
   -------------------------------------------------------------------------- */
.faq-accordion .accordion-item {
  border: 1px solid var(--sh-line);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 0.9rem;
  overflow: hidden;
  background: #fff;
}
.faq-accordion .accordion-button {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--sh-ink);
  padding: 1.2rem 1.4rem;
  background: #fff;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) { background: var(--sh-green-900); color: #fff; }
.faq-accordion .accordion-button:not(.collapsed)::after { filter: invert(1) brightness(2); }
.faq-accordion .accordion-button:focus { box-shadow: 0 0 0 3px rgba(194, 154, 46, 0.4); }
.faq-accordion .accordion-body { padding: 1.3rem 1.4rem; font-size: 0.9375rem; border-top: 2px solid var(--sh-gold-500); }

/* --------------------------------------------------------------------------
   15. Contact + forms + map
   -------------------------------------------------------------------------- */
.contact-card {
  background: var(--sh-green-900);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.4rem 2.2rem;
  height: 100%;
}
.contact-card h3, .contact-card h2 { color: #fff; font-size: 1.35rem; margin-bottom: 1.6rem; }
.contact-row { display: flex; gap: 1.05rem; margin-bottom: 1.45rem; align-items: flex-start; }
.contact-row .icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 180, 74, 0.45);
  border-radius: 50%;
  color: var(--sh-gold-400);
  font-size: 1rem;
}
.contact-row h4 { color: #fff; font-weight: 700; font-size: 0.9375rem; margin-bottom: 0.15rem; }
.contact-row p { margin: 0; font-size: 0.9rem; color: rgba(255, 255, 255, 0.72); }
.contact-row a { color: rgba(255, 255, 255, 0.85); }
.contact-row a:hover { color: var(--sh-gold-400); }

.contact-social { display: flex; gap: 0.6rem; margin-top: 1.9rem; }
.contact-social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.95rem;
  transition: all var(--dur-med) var(--ease-out);
}
.contact-social a:hover { background: var(--sh-gold-500); border-color: var(--sh-gold-500); color: var(--sh-green-950); transform: translateY(-3px); }

/* Forms */
.form-official .form-label { font-weight: 700; font-size: 0.9rem; color: var(--sh-ink); }
.form-official .form-label .req { color: #B4231F; }
.form-official .form-control,
.form-official .form-select {
  border-radius: var(--radius-sm);
  border-color: var(--sh-line);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--sh-ink);
}
.form-official .form-control:focus,
.form-official .form-select:focus {
  border-color: var(--sh-green-700);
  box-shadow: 0 0 0 3px rgba(20, 83, 45, 0.15);
}
.form-official .form-text { font-size: 0.8rem; }
.form-official .invalid-feedback { font-weight: 600; }
.form-success {
  display: none;
  background: var(--sh-green-050);
  border: 1px solid var(--sh-green-600);
  border-left: 4px solid var(--sh-green-600);
  color: var(--sh-green-800);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-weight: 600;
}
.form-success.show { display: block; }

.map-placeholder {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 420px;
  height: 100%;
  background:
    linear-gradient(rgba(6, 35, 26, 0.35), rgba(6, 35, 26, 0.55)),
    url("../../images/pexels-zakh-35665256.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sh-line);
}
.map-pin-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-3);
  text-align: center;
  padding: 2rem 2.4rem;
  max-width: 320px;
  margin: 1rem;
}
.map-pin-card .pin {
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  background: var(--sh-green-800);
  color: var(--sh-gold-400);
  border-radius: 50%;
  font-size: 1.3rem;
}
.map-pin-card h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.map-pin-card p { font-size: 0.875rem; margin-bottom: 1rem; }

/* --------------------------------------------------------------------------
   16. Content helpers
   -------------------------------------------------------------------------- */
.welcome-figure { position: relative; padding: 0 1.5rem 1.5rem 0; }
.welcome-figure::after {
  content: "";
  position: absolute;
  top: 1.5rem;
  right: 0;
  bottom: 0;
  left: 1.5rem;
  border: 2px solid var(--sh-gold-500);
  border-radius: var(--radius-sm);
  z-index: 0;
}
.welcome-figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-3);
}
.welcome-figure figcaption {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 3rem;
  background: var(--sh-green-900);
  color: #fff;
  padding: 0.9rem 1.4rem;
  border-left: 3px solid var(--sh-gold-500);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-2);
  max-width: calc(100% - 3rem);
}
.welcome-figure figcaption strong { display: block; font-size: 1rem; font-weight: 700; }

.welcome-quote {
  font-size: 1.22rem;
  font-style: italic;
  font-weight: 500;
  color: var(--sh-green-800);
  border-left: 3px solid var(--sh-gold-500);
  padding-left: 1.4rem;
  margin-block: 1.8rem;
  line-height: 1.65;
}
.welcome-sign { margin-top: 2rem; display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.welcome-sign .sig { font-style: italic; font-size: 1.4rem; font-weight: 700; color: var(--sh-green-900); }
.welcome-sign .role {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sh-mist);
  border-left: 1px solid var(--sh-line);
  padding-left: 1.1rem;
  font-weight: 600;
}

.about-media { position: relative; }
.about-media img { border-radius: var(--radius-sm); box-shadow: var(--shadow-3); width: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  right: 0.6rem;
  bottom: -1.4rem;
  background: var(--sh-green-900);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-3);
  border-bottom: 3px solid var(--sh-gold-500);
}
.about-badge .num { font-size: 2.1rem; font-weight: 800; color: var(--sh-gold-400); line-height: 1; }
.about-badge .lbl { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.85; margin-top: 0.4rem; font-weight: 700; }

.about-points { margin-top: 1.9rem; display: grid; gap: 1.15rem; }
.about-point { display: flex; gap: 1rem; align-items: flex-start; }
.about-point .icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--sh-green-050);
  color: var(--sh-green-700);
  border-radius: 50%;
  font-size: 1.05rem;
}
.about-point h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
.about-point p { margin: 0; font-size: 0.9375rem; }

/* Value tiles */
.value-tile {
  background: #fff;
  border: 1px solid var(--sh-line);
  border-radius: var(--radius-sm);
  padding: 1.8rem 1.6rem;
  height: 100%;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.value-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }
.value-tile .icon { font-size: 1.5rem; color: var(--sh-gold-600); margin-bottom: 0.9rem; }
.value-tile h3 { font-size: 1.05rem; margin-bottom: 0.45rem; }
.value-tile p { font-size: 0.88rem; margin: 0; }

/* CTA band */
.cta-band {
  background:
    linear-gradient(rgba(6, 35, 26, 0.88), rgba(6, 35, 26, 0.88)),
    url("../../images/pexels-kabwe-kabwe-2148456407-30172599.jpg") center / cover no-repeat;
  color: #fff;
  text-align: center;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; max-width: 26ch; margin-inline: auto; }
.cta-band p { color: rgba(255, 255, 255, 0.8); max-width: 60ch; margin-inline: auto; }

/* Static pagination */
.pagination-official { display: flex; justify-content: center; gap: 0.45rem; flex-wrap: wrap; }
.pagination-official a,
.pagination-official span {
  min-width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  padding-inline: 0.6rem;
  border: 1px solid var(--sh-line);
  border-radius: var(--radius-sm);
  color: var(--sh-ink);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--dur-fast) var(--ease-out);
}
.pagination-official a:hover { border-color: var(--sh-green-700); color: var(--sh-green-800); }
.pagination-official .current { background: var(--sh-green-800); border-color: var(--sh-green-800); color: #fff; }

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--sh-green-950); color: rgba(255, 255, 255, 0.72); font-size: 0.9rem; }
.footer-main { padding-block: 4.5rem 3rem; }
.footer-brand { display: flex; align-items: center; gap: 0.9rem; color: #fff; margin-bottom: 1.3rem; }
.footer-brand .brand-emblem { width: 54px; height: 54px; filter: none; }
.footer-motto { font-style: italic; color: var(--sh-gold-400); font-size: 1.02rem; font-weight: 600; margin-bottom: 1.2rem; }
.footer-title {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.65rem; }
.footer-links a { color: rgba(255, 255, 255, 0.72); display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-links a::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--sh-gold-500);
}
.footer-links a:hover { color: var(--sh-gold-400); }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-block: 1.4rem; font-size: 0.8125rem; }
.footer-bottom a { color: rgba(255, 255, 255, 0.72); }
.footer-bottom a:hover { color: var(--sh-gold-400); }
.footer-gold-rule { height: 3px; background: linear-gradient(90deg, var(--sh-gold-600), var(--sh-gold-400), var(--sh-gold-600)); }

.back-to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 1050;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sh-green-800);
  color: #fff;
  border: 0;
  box-shadow: var(--shadow-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--dur-med) var(--ease-out);
  cursor: pointer;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--sh-gold-500); color: var(--sh-green-950); }

/* --------------------------------------------------------------------------
   18. Responsive refinements
   -------------------------------------------------------------------------- */
@media (max-width: 1199.98px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-desktop .nav-link { padding: 0.6rem 0.6rem; font-size: 0.88rem; }
  .brand-title { font-size: 1rem; }
  .brand-sub { letter-spacing: 0.24em; }
  .nav-cta { padding: 0.55rem 1.05rem; font-size: 0.8rem; }
}

@media (max-width: 991.98px) {
  html { scroll-padding-top: 88px; }
  .hero { min-height: 560px; }
  .hero-count { display: none; }
  .news-featured { min-height: 400px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { min-height: 320px; }
}

@media (max-width: 767.98px) {
  .brand-title { font-size: 1rem; }
  .brand-sub { letter-spacing: 0.22em; }
  .brand-emblem { width: 42px; height: 42px; }
  .hero-controls { display: none; }
  .hero-actions .btn { padding: 0.75rem 1.4rem; font-size: 0.875rem; }
  .welcome-figure { padding: 0 0.9rem 0.9rem 0; }
  .welcome-figure figcaption { bottom: 1.6rem; padding: 0.7rem 1rem; }
  .news-item img { flex-basis: 104px; width: 104px; height: 82px; }
  .press-item { flex-direction: column; gap: 1rem; }
  .press-date { display: inline-flex; width: auto; gap: 0.5rem; align-items: baseline; padding: 0.5rem 0.9rem; }
  .press-date .d { font-size: 1.2rem; }
  .timeline { padding-left: 1.8rem; }
  .timeline-item::before { left: -1.8rem; }
}

@media (max-width: 575.98px) {
  .utility-bar .utility-links .u-hours { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.tall { grid-row: auto; aspect-ratio: 4 / 3; }
  .announce-item { gap: 1rem; }
  .scroll-indicator { display: none; }
  .news-featured-body { padding: 1.5rem; }
  .contact-card { padding: 1.8rem 1.4rem; }
}

@media (max-width: 379.98px) {
  .brand-title { font-size: 0.84rem; }
  .brand { gap: 0.6rem; }
  .brand-emblem { width: 38px; height: 38px; }
  .brand-sub { display: none; }
  .utility-bar { font-size: 0.72rem; }
  .utility-links .u-access { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
}

/* --------------------------------------------------------------------------
   19. Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-slide-bg, .page-hero-bg { transform: none !important; }
  .hero-kicker, .hero-title, .hero-sub, .hero-actions { opacity: 1 !important; transform: none !important; }
}

/* --------------------------------------------------------------------------
   20. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .utility-bar, .hero-controls, .back-to-top, .scroll-indicator, .site-footer .footer-gold-rule { display: none !important; }
}
