:root {
  --le-ink: #183134;
  --le-muted: #627577;
  --le-primary: #087f78;
  --le-primary-dark: #05655f;
  --le-soft: #e9f7f5;
  --le-line: #dce7e6;
  --le-surface: #ffffff;
}

.le-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--le-ink);
  color: #fff !important;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
}

.le-skip-link:focus {
  transform: translateY(0);
}

.le-site-header,
.le-site-footer {
  box-sizing: border-box;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.le-site-header *,
.le-site-footer * {
  box-sizing: border-box;
}

.le-site-header {
  position: relative;
  z-index: 2000;
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  padding: 0;
  border-bottom: 1px solid var(--le-line);
  border-radius: 0;
  background: rgba(255, 255, 255, .98);
  color: var(--le-ink);
  text-align: left;
  box-shadow: none;
}

.le-header-inner {
  width: min(1160px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.le-logo {
  flex: 0 0 auto;
  color: var(--le-ink) !important;
  font-size: 1.22rem;
  font-weight: 850;
  letter-spacing: -.02em;
  text-decoration: none !important;
}

.le-logo span {
  color: var(--le-primary);
}

.le-nav-toggle {
  display: none;
  width: 44px;
  height: 42px;
  margin-left: auto;
  padding: 0;
  border: 1px solid #bed1cf;
  border-radius: 9px;
  background: #fff;
  color: var(--le-ink);
  cursor: pointer;
}

.le-nav-toggle-lines,
.le-nav-toggle-lines::before,
.le-nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: auto;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.le-nav-toggle-lines {
  position: relative;
}

.le-nav-toggle-lines::before {
  position: absolute;
  top: -6px;
}

.le-nav-toggle-lines::after {
  position: absolute;
  top: 6px;
}

.le-site-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

.le-nav-link,
.le-tools-summary {
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  color: #365052 !important;
  font-size: .9rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none !important;
  white-space: nowrap;
}

.le-nav-link:hover,
.le-tools-summary:hover,
.le-nav-link[aria-current="page"] {
  background: var(--le-soft);
  color: var(--le-primary-dark) !important;
}

.le-tools-menu {
  position: relative;
  margin: 0;
}

.le-tools-summary {
  gap: 7px;
  list-style: none;
  cursor: pointer;
}

.le-tools-summary::-webkit-details-marker {
  display: none;
}

.le-tools-summary::after {
  font-size: .72rem;
  content: "▼";
}

.le-tools-menu[open] .le-tools-summary {
  background: var(--le-soft);
  color: var(--le-primary-dark) !important;
}

.le-tools-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(720px, calc(100vw - 32px));
  padding: 20px;
  border: 1px solid var(--le-line);
  border-radius: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(20, 55, 55, .16);
}

.le-menu-group strong {
  display: block;
  margin-bottom: 7px;
  color: var(--le-primary-dark);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.le-menu-group a {
  display: block;
  padding: 6px 0;
  color: #405759 !important;
  font-size: .84rem;
  line-height: 1.3;
  text-decoration: none !important;
}

.le-menu-group a:hover {
  color: var(--le-primary-dark) !important;
  text-decoration: underline !important;
}

.le-site-footer {
  width: 100%;
  max-width: none;
  margin-top: 48px;
  margin-right: 0;
  margin-left: 0;
  padding: 0;
  border-radius: 0;
  border-top: 4px solid var(--le-primary);
  background: #102f32;
  color: #dce9e8;
  text-align: left;
  box-shadow: none;
}

.le-footer-main {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 34px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
}

.le-footer-brand {
  margin: 0 0 9px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 850;
}

.le-footer-description {
  max-width: 440px;
  margin: 0;
  color: #b9cdcb;
  font-size: .9rem;
  line-height: 1.65;
}

.le-footer-column strong {
  display: block;
  margin-bottom: 11px;
  color: #fff;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.le-footer-column a {
  display: block;
  width: fit-content;
  margin: 7px 0;
  color: #c8dcda !important;
  font-size: .88rem;
  text-decoration: none !important;
}

.le-footer-column a:hover {
  color: #fff !important;
  text-decoration: underline !important;
}

.le-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.le-footer-bottom-inner {
  width: min(1160px, calc(100% - 32px));
  min-height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #9db6b4;
  font-size: .78rem;
}

.le-legacy-content {
  margin-bottom: 0 !important;
}

body.le-shell-ready > .copyright,
.le-shell-ready .footer-links,
.le-shell-ready footer .copyright {
  display: none !important;
}

@media (max-width: 860px) {
  .le-header-inner {
    min-height: 62px;
    flex-wrap: wrap;
    gap: 0;
  }

  .le-nav-toggle {
    display: block;
  }

  .le-site-nav {
    flex: 0 0 calc(100% + 32px);
    width: calc(100% + 32px);
    max-height: 0;
    margin: 0 -16px;
    padding: 0 16px;
    display: block;
    overflow: hidden;
    background: #fff;
    visibility: hidden;
    transition: max-height .25s ease, padding .25s ease;
  }

  .le-site-nav.is-open {
    max-height: 80vh;
    padding-top: 9px;
    padding-bottom: 16px;
    overflow-y: auto;
    visibility: visible;
  }

  .le-nav-link,
  .le-tools-summary {
    width: 100%;
    justify-content: space-between;
  }

  .le-tools-panel {
    position: static;
    width: 100%;
    margin: 3px 0 10px;
    padding: 15px;
    grid-template-columns: 1fr 1fr;
    box-shadow: none;
  }
}

@media (max-width: 620px) {
  .le-tools-panel,
  .le-footer-main {
    grid-template-columns: 1fr;
  }

  .le-footer-main {
    gap: 28px;
  }

  .le-footer-bottom-inner {
    padding: 15px 0;
    display: block;
    line-height: 1.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  .le-site-nav {
    transition: none;
  }
}
