/* BRID — Bridge for Research and Inclusive Development */
:root {
  --navy: #0b2c5f;
  --navy-deep: #071f42;
  --blue: #123f7a;
  --gold: #e8a317;
  --orange: #d97706;
  --white: #ffffff;
  --bg: #f5f8fc;
  --ink: #1a2332;
  --muted: #5b677a;
  --radius: 1.5rem;
  --shadow: 0 12px 40px rgba(7, 31, 66, 0.12);
  --max: 72rem;
  --header-h: 4.5rem;
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0;
}

p {
  margin: 0;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(7, 31, 66, 0.1);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--gold);
}

.brand-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  transition: color 0.3s;
}

.brand-text span {
  display: none;
  max-width: 17rem;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
  line-height: 1.3;
}

.site-header.is-scrolled .brand-text strong,
.site-header.is-open .brand-text strong {
  color: var(--navy);
}

.site-header.is-scrolled .brand-text span,
.site-header.is-open .brand-text span {
  color: var(--muted);
}

@media (min-width: 640px) {
  .brand-text span {
    display: block;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-desktop a {
  position: relative;
  padding: 0.55rem 0.65rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.site-header.is-scrolled .nav-desktop a {
  color: var(--muted);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--white);
}

.site-header.is-scrolled .nav-desktop a:hover,
.site-header.is-scrolled .nav-desktop a.active {
  color: var(--navy);
}

.nav-desktop a.active::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  border: none;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-gold:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--blue);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(11, 44, 95, 0.25);
}

.nav-cta {
  margin-left: 0.4rem;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.site-header.is-scrolled .menu-toggle,
.site-header.is-open .menu-toggle {
  color: var(--navy);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.site-header.is-open .menu-toggle span {
  background: transparent;
}

.site-header.is-open .menu-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-open .menu-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-mobile {
  display: none;
  border-top: 1px solid rgba(11, 44, 95, 0.08);
  background: var(--white);
  padding: 1rem 0 1.25rem;
}

.site-header.is-open .nav-mobile {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: 0.85rem 1rem;
  margin: 0.2rem 0;
  border-radius: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.nav-mobile a.active,
.nav-mobile a:hover {
  background: var(--navy);
  color: var(--white);
}

.nav-mobile .btn {
  width: 100%;
  margin-top: 0.5rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle,
  .nav-mobile {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  padding: calc(var(--header-h) + 2rem) 0 5rem;
  background:
    linear-gradient(135deg, rgba(7, 31, 66, 0.9) 0%, rgba(11, 44, 95, 0.72) 48%, rgba(217, 119, 6, 0.38) 100%),
    url("../assets/office-group.jpeg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5rem;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .hero {
    align-items: center;
    padding-bottom: 6rem;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
  }
}

.location-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(7, 31, 66, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.hero-brand img {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 4px rgba(232, 163, 23, 0.7);
  animation: floatSoft 5s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 4.5rem);
  letter-spacing: -0.02em;
}

.hero-fullname {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-lead {
  margin-top: 1.25rem;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: rgba(255, 255, 255, 0.92);
}

.descriptor-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  margin-top: 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.descriptor-row .dot {
  color: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-card {
  display: none;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
}

.hero-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(7, 31, 66, 0.92), transparent);
}

.hero-card {
  position: relative;
}

@media (min-width: 1024px) {
  .hero-card {
    display: block;
  }
}

/* Page hero */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  color: var(--white);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7, 31, 66, 0.92), rgba(11, 44, 95, 0.75) 55%, rgba(217, 119, 6, 0.45));
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4rem;
  background: linear-gradient(to top, var(--bg), transparent);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.page-hero h1 {
  margin-top: 0.75rem;
  max-width: 18ch;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.page-hero p {
  margin-top: 1rem;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.page-hero .hero-actions {
  margin-top: 1.5rem;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-white {
  background: var(--white);
}

.section-navy {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.section-band {
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(232, 163, 23, 0.08), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(11, 44, 95, 0.07), transparent 50%),
    var(--bg);
}

.section-head {
  max-width: 40rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  margin-top: 0.65rem;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--navy);
}

.section-navy .section-head h2,
.section-navy h2 {
  color: var(--white);
}

.section-head p {
  margin-top: 0.85rem;
  color: var(--muted);
}

.section-navy .section-head p {
  color: rgba(255, 255, 255, 0.82);
}

.grid-2 {
  display: grid;
  gap: 1.75rem;
}

.grid-3 {
  display: grid;
  gap: 1.25rem;
}

.grid-4 {
  display: grid;
  gap: 1.25rem;
}

.md-grid-2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .grid-2,
  .md-grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.panel {
  border-radius: var(--radius);
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid rgba(11, 44, 95, 0.1);
  box-shadow: 0 8px 24px rgba(7, 31, 66, 0.05);
}

.panel-navy {
  background: var(--navy);
  color: var(--white);
  border: none;
  box-shadow: var(--shadow);
}

.panel-soft {
  background: rgba(245, 248, 252, 0.85);
}

.icon-circle {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  box-shadow: 0 0 0 6px rgba(11, 44, 95, 0.06);
  line-height: 0;
  overflow: hidden;
}

.icon-circle.gold {
  background: var(--gold);
  color: var(--navy);
}

.icon-circle svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
  margin: 0;
}

.media-frame {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
}

.media-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(7, 31, 66, 0.9), transparent);
  color: var(--white);
}

.media-caption strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.05rem;
}

.focus-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.focus-card:hover {
  transform: translateY(-0.45rem);
  border-color: rgba(232, 163, 23, 0.45);
  box-shadow: var(--shadow);
}

.focus-card::before {
  content: "";
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: rgba(232, 163, 23, 0.12);
  transition: transform 0.3s;
}

.focus-card:hover::before {
  transform: scale(1.25);
}

.focus-card h3 {
  position: relative;
  margin-top: 1.1rem;
  font-size: 1.25rem;
  color: var(--navy);
}

.focus-card p {
  position: relative;
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.focus-card .link-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.1rem;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--orange);
}

.focus-card:hover .link-more {
  gap: 0.55rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.pill {
  display: inline-flex;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pill.soft {
  background: var(--bg);
  color: var(--navy);
  border: 1px solid rgba(11, 44, 95, 0.12);
}

.quote {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--gold);
  background: var(--white);
  border-radius: 0 1rem 1rem 0;
  font-style: italic;
  color: var(--navy);
}

/* Team */
.team-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.team-card {
  text-align: center;
  padding: 1.5rem 1.1rem 1.35rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.team-card:hover {
  transform: translateY(-0.35rem);
  border-color: rgba(232, 163, 23, 0.45);
  box-shadow: var(--shadow);
}

.team-photo {
  width: 7.5rem;
  height: 7.5rem;
  margin-inline: auto;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 0 0 4px rgba(232, 163, 23, 0.55), 0 10px 24px rgba(7, 31, 66, 0.12);
}

.team-card h3 {
  margin-top: 1.1rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.team-card .role {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

/* President message */
.president-message {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 900px) {
  .president-message {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.president-portrait {
  margin: 0;
  text-align: center;
}

.president-portrait img {
  width: min(100%, 18rem);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 2rem;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}

.president-portrait figcaption {
  margin-top: 0.9rem;
}

.president-portrait strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
}

.president-portrait span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.president-copy p {
  color: var(--muted);
  margin-top: 0.85rem;
}

.president-copy p:first-of-type {
  margin-top: 1rem;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 960px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .split.reverse > :first-child {
    order: 2;
  }
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.85rem;
  color: var(--navy);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Africa map */
.africa-map {
  position: relative;
  aspect-ratio: 1;
  max-width: 22rem;
  margin-inline: auto;
  border-radius: 2rem;
  padding: 1.25rem;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.africa-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(232, 163, 23, 0.5) 1.4px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.28;
}

.africa-map svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.africa-map .pulse {
  transform-origin: 108px 118px;
  animation: pulseRing 2.4s ease-in-out infinite;
}

.africa-map .caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0.85rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  color: var(--white);
}

.africa-map .caption strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.95rem;
}

/* Contact */
.contact-details li {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.contact-details .icon-circle {
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  flex: 0 0 2.75rem;
  display: grid !important;
  place-items: center;
  border-radius: 50%;
  background: rgba(232, 163, 23, 0.22) !important;
  box-shadow: none;
  color: var(--gold);
  font-size: 1.05rem;
  line-height: 1;
  overflow: hidden;
}

.contact-details .icon-circle svg {
  display: none;
}

.contact-details small {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.contact-details a,
.contact-details span {
  display: block;
  margin-top: 0.15rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form .row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .contact-form .row {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(11, 44, 95, 0.15);
  background: rgba(245, 248, 252, 0.7);
  font: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232, 163, 23, 0.25);
}

.contact-form-status {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
}

.contact-form-status--error {
  color: #b42318;
}

.contact-form-status--success {
  color: #0a7a3e;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success.is-visible {
  display: block;
}

.form-success h3 {
  margin-top: 0.75rem;
  color: var(--navy);
}

.form-success p {
  margin-top: 0.5rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  position: relative;
  background: var(--navy-deep);
  color: var(--white);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--gold));
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 3.5rem 0 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--gold);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.footer-brand span,
.site-footer p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.site-footer h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.site-footer .footer-links a {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

.site-footer .footer-links a:hover {
  color: var(--gold);
}

.footer-contact li {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.7rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-slogan {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseRing {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(0.75);
  }
  50% {
    opacity: 0;
    transform: scale(1.35);
  }
}

/* Dynamic content status */
.content-status {
  margin-top: 2rem;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

.blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.blog-toolbar input,
.blog-toolbar select {
  flex: 1;
  min-width: 12rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(11, 44, 95, 0.15);
  border-radius: 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  color: var(--ink);
}

.blog-toolbar input:focus,
.blog-toolbar select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232, 163, 23, 0.2);
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.3s;
}

.gallery-item:hover video {
  transform: scale(1.06);
  opacity: 0.9;
}

/* Blog */
.blog-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.blog-card:hover {
  transform: translateY(-0.35rem);
  border-color: rgba(232, 163, 23, 0.45);
  box-shadow: var(--shadow);
}

.blog-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.05);
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.35rem 1.5rem;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.blog-card h3 {
  margin-top: 0.65rem;
  font-size: 1.25rem;
  color: var(--navy);
}

.blog-card p {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

.blog-card .link-more {
  margin-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--orange);
}

.blog-article {
  max-width: 48rem;
  margin-inline: auto;
}

.blog-article .blog-meta {
  margin-top: 0.5rem;
}

.blog-article h1 {
  margin-top: 0.75rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
}

.blog-article .lead {
  margin-top: 1rem;
  font-size: 1.15rem;
  color: var(--muted);
}

.blog-article .article-media {
  margin: 1.75rem 0;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.blog-article .article-media img {
  width: 100%;
  max-height: 26rem;
  object-fit: cover;
}

.blog-article .article-body p {
  margin-top: 1rem;
  color: var(--muted);
}

.blog-article .article-body h2 {
  margin-top: 1.75rem;
  font-size: 1.45rem;
  color: var(--navy);
}

.blog-article .article-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(11, 44, 95, 0.1);
}

/* Gallery */
.gallery-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  display: block;
  border: none;
  padding: 0;
  margin: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  cursor: pointer;
  background: var(--navy);
  aspect-ratio: 1;
  box-shadow: 0 8px 24px rgba(7, 31, 66, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}

.gallery-item:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.06);
  opacity: 0.9;
}

.gallery-item span {
  position: absolute;
  inset: auto 0 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(to top, rgba(7, 31, 66, 0.9), transparent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: left;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(7, 31, 66, 0.9);
  backdrop-filter: blur(6px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  width: min(100%, 56rem);
}

.lightbox-inner img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 1rem;
  background: #000;
}

.lightbox-caption {
  margin-top: 0.85rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-radius: 999px;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.35rem;
  line-height: 1;
  transition: background 0.2s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.lightbox-close {
  top: -0.5rem;
  right: -0.25rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: -0.25rem;
}

.lightbox-next {
  right: -0.25rem;
}

@media (min-width: 768px) {
  .lightbox-prev {
    left: -3rem;
  }

  .lightbox-next {
    right: -3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-brand img,
  .africa-map .pulse,
  .blog-card-media img,
  .gallery-item img {
    animation: none;
    transition: none;
  }
}
