.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  right: 0;
  z-index: 999;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  box-sizing: border-box;
}
.site-header,
#site-header {
  max-width: 100vw;
}
.site-header .header-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: relative;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}
.site-header .header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 0.5rem;
}
.site-header .header-center {
  justify-self: center;
}
.site-header .header-right {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  position: relative;
  z-index: 1001;
}

.site-header .logo-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.site-header .logo-title img {
  height: 80px;
  padding: 1rem 1rem 1rem 0rem;
  margin-left: 0;
}
.site-header .header-right h1 {
  margin: 0;
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  color: #00a95c;
  text-align: right;
  white-space: nowrap;
  display: block !important;
}
.site-header .nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 13px;
  background-color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 10px;
}
.site-header nav {
  display: none;
}
.site-header .nav-container a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-header .nav-home {
  display: none;
}
.site-header .nav-container a.active,
.site-header .nav-container a:hover {
  color: #00a95c;
}
.page-index.nav-open .site-header .nav-container a.active {
  color: #555;
}
.page-index.nav-open .site-header .nav-container a.nav-home.active {
  color: #00a95c;
}
.site-header .menu-close {
  border: none;
  background: transparent;
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
  color: #1a1b1f;
  display: none;
}
.site-header .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.site-header .submenu {
  display: none;
  flex-direction: column;
  gap: 0.45rem;
}
.site-header .submenu a {
  font-size: 12px;
  letter-spacing: 0.6px;
  color: #666;
}
.site-header .hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  background: transparent;
  border: 0;
  padding: 0;
  position: relative;
  z-index: 1000;
}
.site-header .hamburger span {
  height: 3px;
  width: 25px;
  background: #333;
}
.site-header .nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.site-header .header-line {
  height: 12px;
  background-color: #00a95c;
  width: 100%;
  margin-top: 1rem;
}

@media (max-width: 1200px) {
  .site-header .header-right h1 {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .site-header .nav-home {
    display: flex;
  }
  .site-header .nav-toggle:checked ~ .header-right .hamburger {
    display: none !important;
  }
  .site-header .header-left {
    padding-left: 0 !important;
  }
  .site-header .nav-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 1rem;
    width: 100%;
    background: #ffffff;
    text-align: center;
  }
  .site-header .nav-toggle:checked ~ .header-center .nav-container {
    display: flex;
    position: fixed;
    inset: 0;
    background: #ffffff;
    padding-top: 6rem;
    z-index: 999;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    gap: 1.2rem;
  }
  .site-header .nav-toggle:checked ~ .header-center .nav-container > a,
  .site-header .nav-toggle:checked ~ .header-center .nav-container .nav-item > a {
    font-size: 22px;
    font-weight: 400;
  }
  .site-header .nav-toggle:checked ~ .header-center .nav-container .submenu {
    display: none;
  }
  .site-header .nav-toggle:checked ~ .header-center .nav-container .menu-close {
    display: block;
    position: fixed;
    top: 18px;
    right: 18px;
  }
  .site-header .nav-container.show > a,
  .site-header .nav-container.show .nav-item > a {
    font-size: 22px;
    font-weight: 400;
  }
  .site-header .nav-item.submenu-open .submenu {
    display: flex !important;
    gap: 0.6rem;
    align-items: center;
  }
  .site-header .nav-item.submenu-open .submenu a {
    font-size: 18px;
    font-weight: 400;
  }
  .site-header .submenu a {
    padding: 0.2rem 0;
  }
  .site-header .nav-container.show .menu-close {
    display: block;
    position: fixed;
    top: 18px;
    right: 18px;
  }
  .nav-open .site-header .nav-container {
    display: flex;
    position: fixed;
    inset: 0;
    background: #ffffff;
    padding-top: 6rem;
    z-index: 999;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    gap: 1.2rem;
  }
  .site-header .nav-item > a::after {
    content: '▾' !important;
    margin-left: 0.35rem;
    font-size: 0.9em;
  }
  .site-header .nav-item.submenu-open > a::after {
    content: '▴' !important;
  }
  .site-header .hamburger {
    display: flex !important;
  }
  .site-header .logo-title img {
    height: 58px;
    padding-left: 0;
    margin-left: 0;
  }
  .site-header .header-right h1 {
    font-size: 1.0rem;
    padding-top: 8px;
    display: none !important;
  }
  .site-header .header-line {
    margin-top: 0rem;
  }
  .site-header .header-grid {
    grid-template-columns: auto 1fr auto;
  }
  .site-header .header-right {
    gap: 0.5rem;
  }
  .nav-open .site-header .hamburger {
    display: none !important;
  }
  .nav-open .site-header .menu-close {
    display: block !important;
  }
  .nav-open .site-header {
    box-shadow: none !important;
  }
}

@media (min-width: 901px) {
  .site-header .hamburger {
    display: none !important;
  }
  .site-header .nav-item > a::after {
    content: '' !important;
    display: none !important;
  }
}
.site-header .submenu {
  display: none;
}
