@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@600;700;800&family=Roboto+Slab:wght@700;800&display=swap");

.bbh-site-header,
.bbh-site-header *,
.bbh-site-header *::before,
.bbh-site-header *::after {
  box-sizing: border-box;
}

.bbh-site-header {
  --bbh-olive: #172a0e;
  --bbh-olive-mid: #263c1e;
  --bbh-green: #76a900;
  --bbh-green-dark: #3f6400;
  --bbh-gold: #e2b93f;
  --bbh-white: #ffffff;
  --bbh-ink: #242820;
  position: relative;
  z-index: 990;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: var(--bbh-olive) !important;
  color: var(--bbh-white);
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.3;
}

.bbh-site-header a {
  text-decoration: none;
}

.bbh-site-header a:focus-visible,
.bbh-site-header button:focus-visible,
.bbh-skip-link:focus-visible {
  outline: 3px solid var(--bbh-gold, #e2b93f) !important;
  outline-offset: 3px !important;
}

.bbh-skip-link {
  position: fixed;
  z-index: 1200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-180%);
  border: 2px solid #76a900;
  background: #fff;
  color: #172a0e;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 800;
}

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

.bbh-content-anchor {
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
}

.bbh-main-row {
  min-height: 92px;
  background: var(--bbh-olive);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.bbh-shell {
  display: grid;
  width: calc(100% - 48px);
  max-width: 1540px;
  min-height: 92px;
  grid-template-columns: minmax(190px, 230px) minmax(0, 1fr) auto;
  align-items: stretch;
  gap: clamp(16px, 1.6vw, 28px);
  margin: 0 auto;
}

.bbh-logo {
  display: flex;
  min-width: 0;
  align-items: center;
  padding: 10px 0;
}

.bbh-logo img {
  display: block;
  width: auto;
  max-width: 212px;
  max-height: 61px;
  margin: 0;
  object-fit: contain;
}

.bbh-primary-nav {
  min-width: 0;
}

.bbh-nav-list,
.bbh-nav-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bbh-nav-list {
  display: flex;
  min-height: 92px;
  align-items: stretch;
  justify-content: center;
}

.bbh-nav-list > li {
  position: relative;
  display: flex;
  align-items: stretch;
}

.bbh-nav-list > li > a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 clamp(8px, 0.85vw, 14px);
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.bbh-nav-list > li > a::after {
  position: absolute;
  right: 12px;
  bottom: 22px;
  left: 12px;
  height: 3px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--bbh-gold);
  content: "";
  transition: transform 160ms ease;
}

.bbh-nav-list > li:hover > a,
.bbh-nav-list > li:focus-within > a,
.bbh-nav-list > .current-menu-item > a,
.bbh-nav-list > .current-menu-ancestor > a {
  color: #fff !important;
}

.bbh-nav-list > li:hover > a::after,
.bbh-nav-list > li:focus-within > a::after,
.bbh-nav-list > .current-menu-item > a::after,
.bbh-nav-list > .current-menu-ancestor > a::after {
  transform: scaleX(1);
}

.bbh-nav-list .sub-menu {
  position: absolute;
  z-index: 10;
  top: calc(100% - 8px);
  left: 0;
  display: none;
  width: 245px;
  padding: 9px 0;
  border-top: 4px solid var(--bbh-gold);
  background: #fff;
  box-shadow: 0 18px 40px rgba(14, 24, 8, 0.24);
}

.bbh-nav-list li:hover > .sub-menu,
.bbh-nav-list li:focus-within > .sub-menu {
  display: block;
}

.bbh-nav-list .sub-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--bbh-ink) !important;
  font-size: 13px;
  font-weight: 700;
}

.bbh-nav-list .sub-menu a:hover,
.bbh-nav-list .sub-menu a:focus-visible {
  background: #eef5df;
  color: var(--bbh-green-dark) !important;
}

.bbh-header-actions {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.bbh-phone {
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 0 clamp(14px, 1.7vw, 24px);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff !important;
}

.bbh-phone span {
  color: #cad8c2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bbh-phone strong {
  color: #fff;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 15px;
  line-height: 1.15;
  white-space: nowrap;
}

.bbh-book {
  display: grid;
  min-width: 184px;
  align-content: center;
  gap: 3px;
  padding: 0 22px;
  background: var(--bbh-green);
  color: #fff !important;
  transition: background 160ms ease;
}

.bbh-book:hover,
.bbh-book:focus-visible {
  background: var(--bbh-green-dark);
}

.bbh-book strong {
  color: #fff;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 20px;
  line-height: 1.1;
}

.bbh-book span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 10px;
  font-weight: 700;
}

.bbh-menu-toggle,
.bbh-mobile-contact {
  display: none;
}

.bbh-size-rail {
  width: 100%;
  overflow: hidden;
  border-bottom: 4px solid var(--bbh-green);
  background: #10190a;
}

.bbh-size-scroll {
  display: flex;
  width: 100%;
  max-width: 1540px;
  min-height: 74px;
  align-items: stretch;
  margin: 0 auto;
}

.bbh-size-intro,
.bbh-size-all,
.bbh-size-link {
  position: relative;
  flex: 0 0 auto;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff !important;
}

.bbh-size-intro {
  display: grid;
  width: 180px;
  align-content: center;
  gap: 2px;
  padding: 0 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.bbh-size-intro span {
  color: var(--bbh-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bbh-size-intro strong {
  color: #fff;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 14px;
  white-space: nowrap;
}

.bbh-size-link {
  display: flex;
  min-width: 87px;
  flex: 1 1 87px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 7px 7px;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  transition: background 150ms ease, color 150ms ease;
}

.bbh-size-link sup {
  position: relative;
  top: -0.18em;
  font-size: 0.62em;
}

.bbh-size-link:hover,
.bbh-size-link:focus-visible {
  background: #253618;
  color: #fff !important;
}

.bbh-bin-art {
  position: relative;
  display: grid;
  width: 46px;
  height: 42px;
  flex: 0 0 46px;
  place-items: end center;
}

.bbh-bin-art > span {
  position: relative;
  display: block;
  width: calc(44px * var(--bbh-bin-scale));
  height: calc(29px * var(--bbh-bin-scale));
  min-width: 28px;
  min-height: 18px;
  border-top: 4px solid #a9d734;
  background: var(--bbh-green);
  clip-path: polygon(7% 10%, 93% 10%, 82% 100%, 18% 100%);
  filter: drop-shadow(0 3px 0 rgba(5, 20, 2, 0.42));
}

.bbh-bin-art > span::before {
  position: absolute;
  top: 4px;
  right: 13%;
  left: 13%;
  height: 2px;
  background: rgba(255, 255, 255, 0.36);
  content: "";
}

.bbh-bin-art > span::after {
  position: absolute;
  top: 11px;
  bottom: 3px;
  left: 50%;
  width: 1px;
  background: rgba(23, 42, 14, 0.34);
  content: "";
}

.bbh-size-all {
  display: flex;
  width: 148px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 14px;
  background: var(--bbh-gold);
  color: #172a0e !important;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.bbh-size-all:hover,
.bbh-size-all:focus-visible {
  background: #f0ce62;
  color: #172a0e !important;
}

@media (max-width: 1500px) {
  .bbh-shell {
    grid-template-columns: 180px minmax(0, 1fr) auto;
  }

  .bbh-logo img {
    max-width: 180px;
  }

  .bbh-nav-list > li > a {
    padding-right: 7px;
    padding-left: 7px;
    font-size: 11px;
    letter-spacing: 0.02em;
  }

  .bbh-phone {
    display: none;
  }

  .bbh-book {
    min-width: 168px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .bbh-book strong {
    font-size: 19px;
  }

  .bbh-size-intro {
    width: 164px;
  }

  .bbh-size-link {
    min-width: 79px;
    gap: 5px;
    font-size: 14px;
  }

  .bbh-bin-art {
    width: 39px;
    flex-basis: 39px;
    transform: scale(0.9);
  }
}

@media (max-width: 1180px) {
  .bbh-main-row,
  .bbh-shell {
    min-height: 78px;
  }

  .bbh-shell {
    grid-template-columns: minmax(150px, 200px) 1fr;
    gap: 18px;
  }

  .bbh-logo img {
    max-width: 176px;
    max-height: 54px;
  }

  .bbh-header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .bbh-menu-toggle {
    display: grid;
    width: 66px;
    min-height: 78px;
    place-content: center;
    gap: 5px;
    margin: 0;
    padding: 0;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-family: "Open Sans", Arial, sans-serif;
  }

  .bbh-menu-lines,
  .bbh-menu-lines::before,
  .bbh-menu-lines::after {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    content: "";
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .bbh-menu-lines {
    position: relative;
    margin: 0 auto;
  }

  .bbh-menu-lines::before {
    position: absolute;
    top: -7px;
  }

  .bbh-menu-lines::after {
    position: absolute;
    top: 7px;
  }

  .bbh-menu-label {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .bbh-site-header.bbh-menu-open .bbh-menu-lines {
    background: transparent;
  }

  .bbh-site-header.bbh-menu-open .bbh-menu-lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  .bbh-site-header.bbh-menu-open .bbh-menu-lines::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .bbh-primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: calc(100% + 48px);
    margin-left: -24px;
    background: #fff;
  }

  .bbh-site-header.bbh-enhanced .bbh-primary-nav {
    display: none;
  }

  .bbh-site-header.bbh-enhanced.bbh-menu-open .bbh-primary-nav {
    display: block;
  }

  .bbh-nav-list {
    display: grid;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    justify-content: stretch;
    padding: 12px 24px 16px;
  }

  .bbh-nav-list > li {
    display: block;
    border-bottom: 1px solid #d8dfcf;
  }

  .bbh-nav-list > li > a {
    min-height: 46px;
    justify-content: flex-start;
    padding: 10px 8px;
    color: var(--bbh-ink) !important;
    font-size: 13px;
    text-align: left;
  }

  .bbh-nav-list > li > a::after {
    display: none;
  }

  .bbh-nav-list .sub-menu {
    position: static;
    display: block;
    width: auto;
    padding: 0 0 10px 14px;
    border: 0;
    box-shadow: none;
  }

  .bbh-nav-list .sub-menu a {
    padding: 7px 8px;
  }

  .bbh-mobile-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    padding: 14px 24px 18px;
    background: #eef5df;
  }

  .bbh-mobile-contact a {
    color: var(--bbh-green-dark) !important;
    font-size: 13px;
    font-weight: 800;
  }

  .bbh-size-scroll {
    max-width: none;
    min-height: 68px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    scrollbar-color: var(--bbh-green) #10190a;
    scrollbar-width: thin;
  }

  .bbh-size-scroll > a {
    scroll-snap-align: start;
  }

  .bbh-size-intro {
    position: sticky;
    z-index: 2;
    left: 0;
    width: 154px;
    padding: 0 18px;
    background: #10190a;
    box-shadow: 10px 0 18px rgba(0, 0, 0, 0.22);
  }

  .bbh-size-link {
    min-width: 88px;
    flex-basis: 88px;
  }

  .bbh-size-all {
    min-width: 142px;
  }
}

@media (max-width: 620px) {
  .bbh-main-row,
  .bbh-shell {
    min-height: 70px;
  }

  .bbh-shell {
    width: calc(100% - 24px);
    grid-template-columns: minmax(118px, 1fr) auto;
    gap: 8px;
  }

  .bbh-logo img {
    max-width: min(156px, 100%);
    max-height: 46px;
  }

  .bbh-book {
    min-width: 88px;
    padding: 0 14px;
    text-align: center;
  }

  .bbh-book strong {
    font-size: 15px;
  }

  .bbh-book span {
    display: none;
  }

  .bbh-menu-toggle {
    width: 52px;
    min-height: 70px;
  }

  .bbh-primary-nav {
    width: calc(100% + 24px);
    margin-left: -12px;
  }

  .bbh-nav-list {
    grid-template-columns: 1fr;
    padding: 10px 18px 14px;
  }

  .bbh-size-scroll {
    min-height: 62px;
  }

  .bbh-size-intro {
    width: 124px;
    padding: 0 12px;
  }

  .bbh-size-intro span {
    font-size: 9px;
  }

  .bbh-size-intro strong {
    font-size: 12px;
  }

  .bbh-size-link {
    min-width: 76px;
    flex-basis: 76px;
    gap: 2px;
    font-size: 13px;
  }

  .bbh-bin-art {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    transform: scale(0.82);
  }

  .bbh-size-all {
    min-width: 126px;
    font-size: 11px;
  }
}

@media (max-width: 350px) {
  .bbh-logo img {
    max-width: 126px;
  }

  .bbh-book {
    min-width: 74px;
    padding: 0 9px;
  }

  .bbh-menu-toggle {
    width: 46px;
  }

  .bbh-menu-label {
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bbh-site-header *,
  .bbh-site-header *::before,
  .bbh-site-header *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media print {
  .bbh-site-header {
    display: none !important;
  }
}
