/* Header shared across all non-home pages — mirrors the home-page menu exactly. */
.home-header {
  position: relative;
  z-index: 4;
  height: 92px;
  max-width: none;
  margin: 0;
  padding: 0 5%;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  font-family: "DM Sans", Arial, sans-serif;
}

.home-header .home-brand {
  position: absolute;
  right: 5%;
  top: 20px;
  display: block;
  margin: 0;
  width: 52px;
  height: 52px;
  overflow: hidden;
}

.home-header .home-brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-header nav {
  display: flex;
  align-items: center;
  margin: 0 auto 0 0;
  gap: 22px;
  font-family: "DM Sans", Arial, sans-serif;
}

.home-header nav a {
  color: #163a32;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
}

.home-header nav a:hover {
  opacity: 0.62;
}

.home-header .menu-button {
  display: none;
  color: #163a32;
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 0;
}

@media (max-width: 760px) {
  .home-header {
    height: 68px;
    padding: 0 7%;
  }

  .home-header .home-brand {
    right: 7%;
    top: 13px;
    width: 42px;
    height: 42px;
  }

  .home-header nav {
    display: none;
    position: absolute;
    z-index: 4;
    left: 7%;
    right: auto;
    top: 58px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    padding: 18px;
    border: 1px solid rgba(22, 58, 50, 0.15);
  }

  .home-header nav.open {
    display: flex;
  }

  .home-header .menu-button {
    display: block;
    margin-left: auto;
    margin-right: 56px;
  }
}
