/* Shared site header */
body { padding-top: 132px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  width: 100%;
  height: 132px;
  padding: 3px 32px;
  background: #F7F1E6;
}

.site-header__inner {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 190px;
  align-items: center;
  width: 100%;
  height: 100%;
}

.site-header .brand-logo { display: flex; align-items: center; justify-self: start; }
.site-header .logo-img { display: block; width: auto; height: 126px; max-width: none; }
.site-header .site-nav { justify-self: center; }
.site-header .nav-list { display: flex; align-items: center; gap: 38px; list-style: none; }
.site-header .nav-link {
  position: relative;
  display: block;
  padding-bottom: 6px;
  color: #173630;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}
.site-header .nav-link:hover,
.site-header .nav-link.is-active { color: #c4552e; }
.site-header .nav-link.is-active::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #c4552e;
}
.site-header .header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: #c4552e;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.site-header .nav-toggle {
  display: none;
  justify-self: end;
  padding: 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.site-header .nav-toggle span { display: block; width: 26px; height: 2px; margin: 5px 0; background: #173630; }

@media (max-width: 900px) {
  body { padding-top: 112px; }
  .site-header { height: 112px; padding: 5px 24px; }
  .site-header__inner { grid-template-columns: 1fr auto; }
  .site-header .logo-img { height: 102px; }
  .site-header .site-nav,
  .site-header .header-cta { display: none; }
  .site-header .nav-toggle { display: block; }
  .site-header .site-nav.is-open {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: block;
    padding: 20px 24px 28px;
    background: #F7F1E6;
    box-shadow: 0 18px 30px -20px rgba(0, 0, 0, .2);
  }
  .site-header .site-nav.is-open .nav-list { flex-direction: column; align-items: flex-start; gap: 18px; }
}

@media (max-width: 520px) {
  body { padding-top: 100px; }
  .site-header { height: 100px; padding: 5px 20px; }
  .site-header .logo-img { height: 90px; }
}
