:root {
  --wg-red: #b3261e;
  --wg-gold: #d6a019;
  --wg-gold-soft: #f4d35e;
  --wg-green: #1f7a3a;
  --wg-deep-green: #0e3b2e;
  --wg-black: #101010;
  --wg-charcoal: #1c1b18;
  --wg-ivory: #fff8e7;
  --wg-white: #fff;
  --wg-line: rgba(28, 27, 24, 0.14);
  --wg-shadow: 0 22px 70px rgba(39, 25, 12, 0.16);
}

.kente-strip {
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    var(--wg-red) 0 28px,
    var(--wg-gold) 28px 52px,
    var(--wg-green) 52px 78px,
    var(--wg-black) 78px 88px,
    #6b3f22 88px 104px,
    var(--wg-gold-soft) 104px 116px
  );
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 248, 231, 0.94);
  color: var(--wg-charcoal);
  backdrop-filter: blur(18px);
}

.site-nav .nav-inner,
.site-footer .section-inner {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
}

.site-nav .nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-nav .brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--wg-black);
  font-weight: 900;
}

.site-nav .brand-star {
  height: 70px;
  place-items: center;
  overflow: hidden;
}

.site-nav .brand-star img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.site-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}

.site-nav .nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  color: #44382f;
  font-size: 14px;
  font-weight: 780;
}

.site-nav .nav-links a:hover,
.site-nav .nav-links a.active {
  color: var(--wg-deep-green);
  background: rgba(31, 122, 58, 0.1);
}

.site-nav .nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav .mobile-menu {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--wg-line);
  border-radius: 8px;
  background: var(--wg-white);
}

.site-nav .btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  color: var(--wg-black);
  background: linear-gradient(135deg, var(--wg-gold-soft), var(--wg-gold));
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(28, 27, 24, 0.14);
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--wg-charcoal);
  padding: 54px 0 28px;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 24px;
}

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

.site-footer a {
  display: block;
  margin: 7px 0;
  color: inherit;
  text-decoration: none;
}

.site-footer .footer-bottom {
  width: min(1180px, calc(100% - 34px));
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer .footer-bottom a {
  display: inline;
  color: var(--wg-gold-soft);
  font-weight: 900;
}

@media (max-width: 1040px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-nav .nav-inner {
    min-height: 68px;
  }

  .site-nav .mobile-menu {
    display: inline-grid;
    place-items: center;
  }

  .site-nav .nav-links {
    position: absolute;
    left: 17px;
    right: 17px;
    top: 78px;
    display: none;
    padding: 14px;
    border: 1px solid var(--wg-line);
    border-radius: 8px;
    background: var(--wg-ivory);
    box-shadow: var(--wg-shadow);
  }

  .site-nav .nav-links.is-open {
    display: grid;
  }

  .site-nav .nav-links a {
    border-radius: 8px;
  }
}

@media (max-width: 560px) {
  .site-nav .nav-actions {
    display: none;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-bottom {
    display: block;
  }
}
