.lbte-announcement {
  background: #2a5f45;
  color: #fff;
  font-size: 13px;
}

.lbte-announcement__inner,
.lbte-contact-strip__inner,
.lbte-header__inner,
.lbte-slider__controls-inner,
.lbte-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lbte-announcement__inner {
  padding: 10px 0;
}

.lbte-announcement__link {
  text-decoration: underline;
  font-weight: 700;
}

.lbte-contact-strip {
  background: #f4f7fb;
  border-bottom: 1px solid var(--lbte-border);
  color: var(--lbte-muted);
  font-size: 12px;
}

.lbte-contact-strip__inner {
  padding: 8px 0;
}

.lbte-contact-strip__items {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.lbte-contact-strip__items span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lbte-contact-strip__social,
.lbte-social-list {
  display: flex;
  gap: 8px;
}

.lbte-contact-strip__social a,
.lbte-social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lbte-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--lbte-border);
  box-shadow: none;
  transition: box-shadow 0.2s ease, background 0.2s ease, backdrop-filter 0.2s ease;
  backdrop-filter: blur(14px);
}

.lbte-header.is-scrolled {
  box-shadow: var(--lbte-shadow);
  background: rgba(255, 255, 255, 0.98);
}

.lbte-header__inner {
  min-height: 72px;
}

.lbte-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.lbte-brand__logo {
  display: inline-flex;
  align-items: center;
}

.lbte-brand__logo .custom-logo-link,
.lbte-brand__logo a {
  display: inline-flex;
  align-items: center;
}

.lbte-brand__logo img {
  width: auto;
  max-height: 48px;
  border-radius: 12px;
}

.lbte-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #2a5f45;
  color: #fff;
  border-left: 4px solid var(--lbte-navy);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 20px rgba(26, 107, 60, 0.2);
}

.lbte-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.lbte-brand__text strong {
  font-size: 15px;
  color: var(--lbte-navy);
}

.lbte-brand__text span {
  font-size: 11.5px;
  color: var(--lbte-muted);
}

.lbte-nav .menu,
.lbte-mobile-panel__menu,
.lbte-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lbte-nav .menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.lbte-nav .menu a {
  display: inline-flex;
  padding: 10px 14px;
  color: var(--lbte-navy);
  font-size: 13px;
  font-weight: 600;
  border-bottom: 3px solid transparent;
  position: relative;
}

.lbte-nav .menu a:hover,
.lbte-nav .menu .current-menu-item > a {
  color: var(--lbte-green);
  border-bottom-color: var(--lbte-green);
}

.lbte-mobile-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--lbte-navy);
  cursor: pointer;
}

.lbte-mobile-panel {
  border-top: 1px solid var(--lbte-border);
  padding: 16px 24px 20px;
  background: #fff;
}

.lbte-mobile-panel__menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.lbte-mobile-panel__menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--lbte-navy);
  font-weight: 600;
}

.lbte-footer {
  background:
    radial-gradient(circle at top left, rgba(42, 95, 69, 0.16), transparent 32%),
    linear-gradient(180deg, #081731 0%, #091f42 100%);
  color: rgba(255, 255, 255, 0.82);
  padding: 96px 0 34px;
}

.lbte-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lbte-brand--footer .lbte-brand__text strong {
  color: #fff;
}

.lbte-brand--footer .lbte-brand__text span {
  color: rgba(255, 255, 255, 0.55);
}

.lbte-footer__description {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
  margin-top: 16px;
}

.lbte-footer h4 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.lbte-footer__links,
.lbte-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lbte-footer__links a {
  color: rgba(255, 255, 255, 0.58);
  transition: color 0.18s ease, transform 0.18s ease;
}

.lbte-footer__links a:hover {
  color: #fff;
  transform: translateX(2px);
}

.lbte-footer__contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.66);
}

.lbte-footer__contact .dashicons {
  margin-top: 2px;
  color: #82b59b;
}

.lbte-footer__bottom {
  padding-top: 22px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.66);
}

.lbte-scroll-top {
  display: inline-flex;
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a5f45, #1f7a4d);
  color: #fff;
  box-shadow: 0 12px 26px rgba(42, 95, 69, 0.28);
}

.lbte-page-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 0 96px;
}

.lbte-page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f2f58 0%, #1b4778 100%);
  color: #fff;
  padding: 80px 0 68px;
}

.lbte-page-hero__inner {
  position: relative;
}

.lbte-page-hero__content {
  position: relative;
  z-index: 2;
}

.lbte-page-hero h1 {
  font-size: clamp(38px, 4vw, 52px);
  margin-top: 10px;
  line-height: 1.08;
}

.lbte-page-hero__intro {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.lbte-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.lbte-content-shell .lbte-card {
  padding: 30px;
}

.lbte-richtext h1,
.lbte-richtext h2,
.lbte-richtext h3 {
  color: var(--lbte-navy);
}

.lbte-page-title {
  margin-top: 0;
}
