.site-header {
  height: 100px;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 246, 241, 0.97);
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
}
.wordmark {
  font-size: 34px;
  letter-spacing: -0.075em;
  font-weight: 750;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 550;
  white-space: nowrap;
}
.desktop-nav > a:hover {
  color: var(--green);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 23px;
}
.language-switch {
  display: flex;
  gap: 7px;
  font-size: 12px;
  color: #8b8e88;
}
.language-switch .selected {
  color: var(--ink);
  font-weight: 750;
}
.language-switch .divider {
  opacity: 0.5;
}
.button {
  border: 1px solid var(--green);
  background: var(--green);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 17px 23px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #306344;
  transform: translateY(-2px);
}
.button span {
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
}
.button-small {
  font-size: 12px;
  padding: 13px 17px;
  gap: 16px;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  gap: 6px;
}
.nav-dropdown summary::-webkit-details-marker {
  display: none;
}
.nav-panel {
  position: absolute;
  top: 42px;
  left: -22px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 15px 35px #18241d10;
  width: 285px;
  padding: 10px;
}
.nav-panel a {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  font-size: 14px;
}
.nav-panel a:hover {
  background: #e9ede3;
}
.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  padding: 12px;
}
.menu-toggle span {
  display: block;
  width: 23px;
  height: 1px;
  background: var(--ink);
  margin: 6px 0;
}
.mobile-nav {
  background: var(--paper);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 20px var(--space);
  max-height: calc(100dvh - 85px);
  overflow: auto;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 15px 30px #17261a14;
}
.mobile-nav a {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.site-footer {
  background: #eceee7;
  padding-block: 60px 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 50px;
}
.footer-top p {
  max-width: 270px;
  font-size: 15px;
}
.footer-top > a:last-child {
  justify-self: end;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 14px;
  padding: 50px 0 35px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 23px;
}
.page-hero {
  padding-block: 100px 90px;
}
.page-hero h1 {
  max-width: 950px;
}
.page-hero p {
  max-width: 690px;
  font-size: 20px;
  margin: 30px 0;
}
.page-hero .eyebrow {
  margin-bottom: 28px;
}
@media (min-width: 1600px) {
  .desktop-nav {
    font-size: 14px;
  }
}
@media (max-width: 1180px) {
  .desktop-nav {
    gap: 17px;
  }
  .header-inner {
    gap: 25px;
  }
  .header-actions {
    gap: 15px;
  }
  .header-cta {
    display: none;
  }
}
@media (max-width: 930px) {
  .desktop-nav {
    display: none;
  }
  .header-actions {
    margin-left: auto;
  }
  .header-cta {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .site-header {
    height: 82px;
  }
}
@media (max-width: 600px) {
  .header-cta {
    display: none;
  }
  .wordmark {
    font-size: 31px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-top > a:last-child {
    justify-self: start;
  }
  .footer-links {
    gap: 18px 25px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
  .page-hero {
    padding-block: 65px;
  }
  .page-hero p {
    font-size: 18px;
  }
}
