.topbar {
  position: sticky;
  top: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 14px clamp(18px, 4.6vw, 72px);
  background: rgba(237,247,239,0.96);
  border-bottom: 1px solid rgba(15,107,63,0.14);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #0f3327;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.topnav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.topnav a {
  color: #48645a;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.topnav a:hover {
  color: #0f6b3f;
}

.topnav .nav-cta,
.nav-cta {
  padding: 10px 15px;
  border-radius: 12px;
  background: #2f9e44;
  color: #fff !important;
}

footer {
  background: #09271d;
  color: rgba(255,255,255,0.62);
  text-align: center;
  padding: 32px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.8;
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto 24px;
}

.footer-logo-card {
  width: 168px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  background: #fff;
  border-radius: 8px;
}

.footer-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

footer a {
  color: rgba(255,255,255,0.78);
  margin: 0 8px;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

@media (max-width: 980px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .topnav {
    justify-content: flex-start;
    gap: 12px 14px;
  }
}

@media (max-width: 620px) {
  .brand {
    font-size: 22px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .topnav a {
    font-size: 13px;
  }

  .footer-logo-card {
    width: 142px;
    height: 66px;
  }
}
