/* Slice 002: Blake static-package homepage, global chrome, and Subscribe form. */
:root {
  --bgh-static-red: #b82818;
  --bgh-static-red-dark: #8f1208;
  --bgh-static-red-bright: #d70000;
  --bgh-static-black: #252525;
  --bgh-static-charcoal: #373737;
  --bgh-static-muted: #666;
  --bgh-static-soft: #f8f3f3;
  --bgh-static-line: #e6dddd;
  --bgh-static-footer: #2b2b2b;
}

@font-face {
  font-family: "Bunkie Font Awesome 5 Free";
  src: url("/images/bunkie/fonts/fa-solid-900.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: block;
}

body.bgh-page {
  font-family: Lato, Arial, Helvetica, sans-serif;
  color: #333;
}

.bgh-screen-reader-text,
.bgh-subscribe-form .bgh-screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bgh-static-header {
  position: relative;
  z-index: 50;
  background: #fff;
  box-shadow: none;
}

.bgh-static-header .bgh-topbar {
  background: var(--bgh-static-red-dark);
  color: #fff;
  font-size: 14px;
}

.bgh-static-header .bgh-topbar__inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bgh-static-header .bgh-topbar__contact,
.bgh-static-header .bgh-topbar__quicklinks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.bgh-static-header .bgh-topbar a {
  color: #fff;
  font-weight: 400;
  line-height: 1.2;
}

.bgh-static-header .bgh-topbar a:hover {
  color: #fff;
  text-decoration: underline;
}

.bgh-static-header .bgh-topbar__link::before {
  display: inline-block;
  margin-right: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.bgh-static-header .bgh-topbar__address::before { content: "📍"; }
.bgh-static-header .bgh-topbar__phone::before { content: "☎"; }

.bgh-static-header .bgh-topbar__quicklinks {
  margin-left: auto;
}

.bgh-static-header .bgh-topbar__social {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #c93022;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.bgh-static-header .bgh-header-main-wrap {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

@media (min-width: 981px) {
  .bgh-static-header .bgh-header-main-wrap {
    position: sticky;
    top: 0;
    z-index: 60;
  }
}

.bgh-static-header .bgh-mainnav {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.bgh-static-header .bgh-logo img {
  display: block;
  width: 300px;
  max-width: 33vw;
  max-height: 62px;
  object-fit: contain;
}

.bgh-static-header .bgh-nav {
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .01em;
}

.bgh-static-header .bgh-nav__list {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bgh-static-header .bgh-nav__list li { position: relative; }

.bgh-static-header .bgh-nav a {
  display: block;
  color: #404852;
  white-space: nowrap;
  overflow-wrap: normal;
  text-decoration: none;
}

.bgh-static-header .bgh-nav__list > li > a {
  padding: 34px 0;
}

.bgh-static-header .bgh-nav a:hover,
.bgh-static-header .bgh-nav a.is-active {
  color: var(--bgh-static-red-bright);
}

.bgh-static-header .bgh-nav__list > li > a::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 7px;
  background: var(--bgh-static-red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .18s ease;
}

.bgh-static-header .bgh-nav__list > li > a:hover::after,
.bgh-static-header .bgh-nav__list > li > a.is-active::after {
  transform: scaleX(1);
}

.bgh-static-header .bgh-nav__list ul {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 80;
  min-width: 245px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: #fff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, .18);
}

.bgh-static-header .bgh-nav__list li:hover > ul,
.bgh-static-header .bgh-nav__list li:focus-within > ul {
  display: block;
}

.bgh-static-header .bgh-nav__list ul a {
  padding: 10px 18px;
  color: #444;
  text-transform: none;
  letter-spacing: 0;
}

.bgh-menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid #ead8d5;
  background: #fff;
  color: var(--bgh-static-red-dark);
  border-radius: 3px;
  padding: 10px 12px;
  font-weight: 700;
  text-transform: uppercase;
  gap: 8px;
  align-items: center;
}

.bgh-menu-toggle__bars,
.bgh-menu-toggle__bars::before,
.bgh-menu-toggle__bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
}

.bgh-menu-toggle__bars { position: relative; }
.bgh-menu-toggle__bars::before { position: absolute; top: -6px; left: 0; }
.bgh-menu-toggle__bars::after { position: absolute; top: 6px; left: 0; }

.bgh-home-page .bgh-main {
  background: #fff;
}

.bgh-home-page h1,
.bgh-home-page h2,
.bgh-home-page h3,
.bgh-home-page a {
  overflow-wrap: normal;
  word-break: normal;
}

.bgh-home-slider {
  position: relative;
  height: 700px;
  min-height: 700px;
  overflow: hidden;
  background: #1f1716;
  color: #fff;
}

.bgh-home-slider__viewport,
.bgh-home-slide {
  position: absolute;
  inset: 0;
}

.bgh-home-slide {
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  background-image: var(--slide-image);
  background-position: center;
  background-size: cover;
  transition: opacity .5s ease, visibility .5s ease;
}

.bgh-home-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.bgh-home-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 15, 14, .75), rgba(112, 21, 14, .42) 46%, rgba(112, 21, 14, .08));
}

.bgh-home-slide__content {
  position: relative;
  z-index: 2;
  padding: 90px 0 110px;
}

.bgh-home-slide__content > * {
  max-width: 650px;
}

.bgh-home-slide__eyebrow {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bgh-home-slide h1 {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(48px, 5.8vw, 72px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.bgh-home-slide h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.bgh-home-slide__body {
  margin: 0 0 30px;
  color: #fff;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 700;
}

.bgh-home-slide__body p {
  margin: 0;
}

.bgh-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 3px;
  min-height: 44px;
  padding: 13px 24px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .03em;
  text-decoration: none !important;
}

.bgh-button--primary {
  background: var(--bgh-static-red);
  color: #fff;
}

.bgh-button--light {
  background: #fff;
  color: var(--bgh-static-red);
}

.bgh-button:hover,
.bgh-button:focus {
  filter: brightness(.96);
}

.bgh-home-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 4;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.bgh-home-slider__dots button {
  width: 13px;
  height: 13px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.bgh-home-slider__dots button.is-active {
  background: #fff;
}

.bgh-home-intro {
  padding-top: 0;
  padding-bottom: 80px;
  background: #fff;
}

.bgh-home-intro__grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  transform: translateY(-80px);
  margin-bottom: -80px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .13);
}

.bgh-home-intro__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  padding: 58px 52px;
  background: linear-gradient(115deg, var(--bgh-static-red-dark), var(--bgh-static-red));
  color: #fff;
}

.bgh-home-intro__panel .bgh-kicker {
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.bgh-home-intro__panel h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(31px, 3.2vw, 42px);
  line-height: 1.28;
  font-weight: 700;
}

.bgh-home-intro__panel p {
  margin: 0 0 24px;
  color: #fff;
  font-size: 17px;
  line-height: 1.7;
}

.bgh-home-quicklinks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
}

.bgh-home-quicklinks a {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #e3e3e3;
  color: var(--bgh-static-red-bright);
  font-size: 19px;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
}

.bgh-home-quicklinks a:hover,
.bgh-home-quicklinks a:focus {
  background: #fafafa;
  color: var(--bgh-static-red-dark);
}

.bgh-home-quicklinks__icon {
  display: block;
  width: 66px;
  height: 58px;
  margin-bottom: 12px;
  color: var(--bgh-static-red);
  font-size: 0;
}

.bgh-home-quicklinks__icon::before {
  display: block;
  font-family: "Bunkie Font Awesome 5 Free";
  font-size: 48px;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  line-height: 1;
  text-rendering: auto;
}

.bgh-home-quicklinks a:nth-child(1) .bgh-home-quicklinks__icon::before { content: "\f3e0"; }
.bgh-home-quicklinks a:nth-child(2) .bgh-home-quicklinks__icon::before { content: "\f7f2"; }
.bgh-home-quicklinks a:nth-child(3) .bgh-home-quicklinks__icon::before { content: "\f4be"; }
.bgh-home-quicklinks a:nth-child(4) .bgh-home-quicklinks__icon::before { content: "\f0f1"; }

.bgh-home-services {
  padding: 78px 0 86px;
  background: #fff;
}

.bgh-home-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 46px;
}

.bgh-home-section-head h2 {
  margin: 0;
  color: var(--bgh-static-red-bright);
  font-size: clamp(32px, 3.5vw, 42px);
  line-height: 1.12;
  font-weight: 700;
}

.bgh-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
}

.bgh-service-card img {
  display: block;
  width: 100%;
  height: 235px;
  margin: 0 0 24px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.bgh-service-card h3 {
  margin: 0 0 16px;
  font-size: 26px;
  line-height: 1.22;
  font-weight: 700;
}

.bgh-service-card h3 a {
  color: var(--bgh-static-red-bright);
  text-decoration: none;
}

.bgh-service-card h3 a:hover { text-decoration: underline; }

.bgh-service-card p {
  margin: 0;
  color: var(--bgh-static-muted);
  font-size: 17px;
  line-height: 1.65;
}

.bgh-home-careers {
  padding: 88px 0;
  background-image: linear-gradient(90deg, rgba(32, 18, 16, .86), rgba(128, 26, 16, .68)), var(--career-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

@media (min-width: 1025px) {
  .bgh-home-careers { background-attachment: fixed; }
}

.bgh-home-careers__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, .88fr);
  gap: 54px;
  align-items: center;
}

.bgh-home-careers .bgh-kicker {
  margin: 0 0 12px;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
}

.bgh-home-careers h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.1;
}

.bgh-home-careers h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 22px;
  line-height: 1.35;
}

.bgh-home-careers p {
  max-width: 650px;
  margin: 0 0 28px;
  color: #fff;
  font-size: 18px;
  line-height: 1.7;
}

.bgh-home-careers__card {
  padding: 32px;
  background: #fff;
  color: #333;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .25);
}

.bgh-home-careers__card img {
  display: block;
  width: 100%;
  margin: 0 auto 22px;
  border-radius: 0;
  box-shadow: none;
}

.bgh-home-careers__card h3 {
  margin: 0;
  color: var(--bgh-static-red-bright);
  font-size: 26px;
}

.bgh-static-footer {
  background: var(--bgh-static-footer);
  color: #e5e5e5;
  border-top: 0;
}

.bgh-static-footer .bgh-footer-main {
  background: linear-gradient(135deg, #2a2a2a, #222);
  padding: 58px 0 42px;
}

.bgh-static-footer .bgh-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(260px, 1fr);
  gap: 44px;
  padding: 0;
}

.bgh-static-footer .bgh-footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 32px;
}

.bgh-static-footer .bgh-footer__links section,
.bgh-static-footer .bgh-footer__subscribe {
  min-width: 0;
}

.bgh-static-footer h2 {
  margin: 0 0 15px;
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
}

.bgh-static-footer .bgh-footer__links h2 a,
.bgh-static-footer a {
  color: #fff;
}

.bgh-static-footer .bgh-footer__links a {
  display: block;
  margin: 8px 0;
  color: #ddd;
  font-size: 15px;
  line-height: 1.35;
}

.bgh-static-footer .bgh-footer__links a:hover,
.bgh-static-footer .bgh-footer__social a:hover,
.bgh-static-footer .bgh-footer__credit:hover {
  color: #fff;
  text-decoration: underline;
}

.bgh-subscribe-form {
  display: grid;
  gap: 10px;
}

.bgh-subscribe-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.bgh-subscribe-form input {
  width: 100%;
  min-height: 45px;
  padding: 11px 13px;
  border: 0;
  border-radius: 2px;
  background: #fff;
  color: #333;
  font: inherit;
}

.bgh-subscribe-form input:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.bgh-subscribe-form__submit {
  width: 100%;
  min-height: 45px;
  border: 0;
  border-radius: 2px;
  background: var(--bgh-static-red);
  color: #fff;
  font: inherit;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.bgh-subscribe-form__submit:hover,
.bgh-subscribe-form__submit:focus {
  background: var(--bgh-static-red-bright);
}

.bgh-form-honeypot { display: none; }

.bgh-form-alert {
  margin: 0 0 4px;
  padding: 11px 13px;
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.45;
}

.bgh-form-alert p { margin: 0 0 6px; }
.bgh-form-alert ul { margin: 0; padding-left: 20px; }
.bgh-form-alert--success { background: #e8f7e7; color: #214f1e; }
.bgh-form-alert--error { background: #fff1ef; color: #7c160d; }

.bgh-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

.bgh-footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 15px;
}

.bgh-footer__social a::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bgh-static-red);
  color: #fff;
  font-weight: 700;
}

.bgh-footer__social a[href*="facebook"]::before { content: "f"; }
.bgh-footer__social a[href*="instagram"]::before { content: "◎"; }

.bgh-static-footer .bgh-footer__bottom {
  background: #1b1b1b;
  border-top: 0;
}

.bgh-static-footer .bgh-footer__bottom-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.bgh-footer__logo img {
  display: block;
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.bgh-static-footer .bgh-footer__bottom p {
  margin: 0;
  color: #ddd;
  text-align: right;
}

.bgh-static-footer .bgh-footer__credit {
  color: #ddd;
  font-size: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .bgh-home-slide { transition: none; }
}

@media (max-width: 1280px) {
  .bgh-static-header .bgh-logo img { width: 230px; }
  .bgh-static-header .bgh-nav { font-size: 12px; }
  .bgh-static-header .bgh-nav__list { gap: 10px; }
}

@media (max-width: 980px) {
  .bgh-static-header .bgh-topbar__inner {
    display: block;
    padding: 10px 0;
  }

  .bgh-static-header .bgh-topbar__quicklinks {
    margin: 8px 0 0;
  }

  .bgh-static-header .bgh-mainnav {
    min-height: 78px;
  }

  .bgh-static-header .bgh-logo img {
    width: 220px;
    max-width: calc(100vw - 150px);
  }

  .bgh-menu-toggle {
    display: inline-flex;
  }

  .bgh-static-header .bgh-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 100;
    margin: 0;
    padding: 18px 22px;
    background: #fff;
    border-top: 1px solid #ead8d5;
    box-shadow: 0 20px 38px rgba(0, 0, 0, .22);
    max-height: calc(100vh - 125px);
    overflow: auto;
  }

  .bgh-static-header .bgh-nav.is-open {
    display: block;
  }

  .bgh-static-header .bgh-nav__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .bgh-static-header .bgh-nav__list > li > a {
    padding: 7px 0;
    white-space: normal;
  }

  .bgh-static-header .bgh-nav__list > li > a::after { display: none; }

  .bgh-static-header .bgh-nav__list ul {
    position: static;
    display: block;
    min-width: 0;
    padding: 2px 0 5px 18px;
    background: #fff;
    box-shadow: none;
  }

  .bgh-static-header .bgh-nav__list ul a {
    padding: 6px 0;
    white-space: normal;
  }

  .bgh-home-slider {
    height: 520px;
    min-height: 520px;
  }

  .bgh-home-slide__content {
    padding: 62px 0 84px;
  }

  .bgh-home-slide__eyebrow { font-size: 19px; }
  .bgh-home-slide h1 { font-size: clamp(40px, 9vw, 58px); }
  .bgh-home-slide h2 { font-size: 19px; }
  .bgh-home-slide__body { font-size: 17px; }

  .bgh-home-intro__grid,
  .bgh-home-careers__grid,
  .bgh-card-grid,
  .bgh-static-footer .bgh-footer__grid,
  .bgh-static-footer .bgh-footer__links {
    grid-template-columns: 1fr;
  }

  .bgh-home-intro__grid {
    transform: none;
    margin-bottom: 0;
  }

  .bgh-home-intro {
    padding-bottom: 54px;
  }

  .bgh-home-intro__panel {
    min-height: 0;
  }

  .bgh-home-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .bgh-card-grid { gap: 34px; }
  .bgh-home-careers__grid { gap: 30px; }
  .bgh-home-careers__card { max-width: 520px; }
  .bgh-static-footer .bgh-footer__grid { gap: 30px; }
  .bgh-static-footer .bgh-footer__bottom-inner { grid-template-columns: auto 1fr; }
  .bgh-static-footer .bgh-footer__credit { grid-column: 2; }
}

@media (max-width: 620px) {
  .bgh-static-header .bgh-topbar__contact,
  .bgh-static-header .bgh-topbar__quicklinks {
    gap: 8px 14px;
  }

  .bgh-static-header .bgh-mainnav {
    min-height: 74px;
  }

  .bgh-static-header .bgh-logo img {
    width: 190px;
  }

  .bgh-home-slider {
    height: 430px;
    min-height: 430px;
  }

  .bgh-home-slide {
    background-position: center;
  }

  .bgh-home-slide__content {
    padding: 48px 0 72px;
  }

  .bgh-home-slide__eyebrow {
    margin-bottom: 12px;
    font-size: 17px;
  }

  .bgh-home-slide h1 {
    margin-bottom: 14px;
    font-size: clamp(31px, 9vw, 35px);
    line-height: 1.04;
  }

  .bgh-home-slide h2 {
    margin-bottom: 14px;
    font-size: 16px;
  }

  .bgh-home-slide__body {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.55;
  }

  .bgh-home-slider__dots {
    bottom: 18px;
  }

  .bgh-home-intro__panel {
    padding: 36px 26px;
  }

  .bgh-home-quicklinks {
    grid-template-columns: 1fr 1fr;
  }

  .bgh-home-quicklinks a {
    min-height: 150px;
  }

  .bgh-home-services,
  .bgh-home-careers {
    padding: 50px 0;
  }

  .bgh-service-card img {
    height: auto;
    max-height: 240px;
  }

  .bgh-subscribe-form__row {
    grid-template-columns: 1fr;
  }

  .bgh-static-footer .bgh-footer__links {
    grid-template-columns: 1fr 1fr;
  }

  .bgh-static-footer .bgh-footer__bottom-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 0;
    text-align: center;
  }

  .bgh-footer__logo img {
    margin: 0 auto;
  }

  .bgh-static-footer .bgh-footer__bottom p,
  .bgh-static-footer .bgh-footer__credit {
    grid-column: auto;
    text-align: center;
  }
}

/* Slice 002 follow-up: match Blake static header heights, nav alignment, and mobile chrome. */
.bgh-static-header .bgh-container,
.bgh-static-footer .bgh-container {
  width: min(1200px, calc(100% - 40px));
}

.bgh-static-header .bgh-topbar {
  font-size: 13px;
}

.bgh-static-header .bgh-topbar__inner {
  min-height: 50px;
}

.bgh-static-header .bgh-topbar__link::before {
  content: "";
  flex: 0 0 auto;
  display: inline-block;
  margin-right: 8px;
  background: #fff;
  vertical-align: middle;
}

.bgh-static-header .bgh-topbar__address::before {
  width: 8px;
  height: 8px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg) translateY(-1px);
}

.bgh-static-header .bgh-topbar__phone::before {
  width: 12px;
  height: 12px;
  background: none;
  color: #fff;
  content: "\260E";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1;
}

.bgh-static-header .bgh-mainnav {
  min-height: 92px;
  gap: 0;
}

.bgh-static-header .bgh-logo img {
  width: 300px;
  max-width: 100%;
  max-height: 62px;
}

.bgh-static-header .bgh-nav {
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.bgh-static-header .bgh-nav__list {
  align-items: stretch;
  gap: 6px;
}

.bgh-static-header .bgh-nav__list > li > a {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  height: 92px;
  padding: 0 8px;
  color: #54595f;
  line-height: 20px;
}

.bgh-static-header .bgh-nav__list > li > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  height: 3px;
  background: var(--bgh-static-red);
  transform: scaleX(0);
  transform-origin: center center;
  transition: transform .18s ease;
}

.bgh-static-header .bgh-nav__list > li > a:hover::before,
.bgh-static-header .bgh-nav__list > li > a.is-active::before {
  transform: scaleX(1);
}

.bgh-static-header .bgh-nav__list > li > a::after {
  content: none;
}

.bgh-static-header .bgh-nav__list > li:has(> ul) > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 10.8px;
  border-left: 4.5px solid transparent;
  border-right: 4.5px solid transparent;
  border-top: 5px solid currentColor;
  background: transparent;
  transform: none;
  transition: none;
}

.bgh-static-header .bgh-header-search {
  position: relative;
  flex: 0 0 33px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  margin-left: 0;
  border-radius: 3px;
  background: #f1f1f1;
  color: #333;
  line-height: 1;
}

.bgh-static-header .bgh-header-search span {
  display: none;
}

.bgh-static-header .bgh-header-search::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 3px solid currentColor;
  border-radius: 50%;
  transform: translate(-1px, -1px);
}

.bgh-static-header .bgh-header-search::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 3px;
  background: currentColor;
  transform: translate(8px, 8px) rotate(45deg);
  transform-origin: left center;
}

@media (max-width: 1280px) and (min-width: 981px) {
  .bgh-static-header .bgh-container {
    width: min(1200px, calc(100% - 28px));
  }

  .bgh-static-header .bgh-logo img {
    width: 230px;
  }

  .bgh-static-header .bgh-nav {
    font-size: 12px;
  }

  .bgh-static-header .bgh-nav__list {
    gap: 0;
  }

  .bgh-static-header .bgh-nav__list > li > a {
    padding-inline: 7px;
  }
}

@media (max-width: 980px) {
  .bgh-static-header .bgh-mainnav {
    position: relative;
    min-height: 58px;
  }

  .bgh-static-header .bgh-nav__list > li > a {
    height: auto;
    padding: 8px 0;
  }

  .bgh-static-header .bgh-nav__list > li > a::before,
  .bgh-static-header .bgh-nav__list > li:has(> ul) > a::after {
    display: none;
  }
}

@media (max-width: 620px) {
  .bgh-static-header .bgh-container,
  .bgh-static-footer .bgh-container {
    width: 100%;
  }

  .bgh-static-header .bgh-topbar {
    font-size: 11px;
  }

  .bgh-static-header .bgh-topbar__inner {
    min-height: 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 8px 10px 7px;
  }

  .bgh-static-header .bgh-topbar__contact,
  .bgh-static-header .bgh-topbar__quicklinks {
    width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 14px;
  }

  .bgh-static-header .bgh-topbar__quicklinks {
    margin: 0;
  }

  .bgh-static-header .bgh-topbar__link::before {
    margin-right: 6px;
  }

  .bgh-static-header .bgh-topbar__address::before {
    width: 7px;
    height: 7px;
  }

  .bgh-static-header .bgh-topbar__phone::before {
    font-size: 11px;
  }

  .bgh-static-header .bgh-topbar__social {
    width: 26px;
    height: 26px;
  }

  .bgh-static-header .bgh-mainnav {
    width: 100%;
    min-height: 48px;
    padding: 5px 10px;
  }

  .bgh-static-header .bgh-logo img {
    width: 222px;
    max-height: 31px;
  }

  .bgh-menu-toggle {
    width: 37px;
    height: 37px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #111;
  }

  .bgh-menu-toggle__label {
    display: none;
  }

  .bgh-menu-toggle__bars,
  .bgh-menu-toggle__bars::before,
  .bgh-menu-toggle__bars::after {
    width: 23px;
    height: 3px;
  }

  .bgh-menu-toggle__bars::before {
    top: -8px;
  }

  .bgh-menu-toggle__bars::after {
    top: 8px;
  }

  .bgh-static-header .bgh-header-search {
    flex-basis: 33px;
    width: 33px;
    height: 33px;
    margin-left: 10px;
  }

  .bgh-static-header .bgh-nav {
    top: 100%;
    max-height: calc(100vh - 123px);
  }
}

.bgh-submenu-toggle {
  display: none;
}

@media (max-width: 980px) {
  .bgh-static-header .bgh-nav {
    padding: 0;
    background: #8a1300;
    border-top: 0;
    box-shadow: none;
  }

  .bgh-static-header .bgh-nav__list {
    display: block;
    margin: 0;
    padding: 0;
    background: #8a1300;
  }

  .bgh-static-header .bgh-nav__list > li {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    text-align: center;
  }

  .bgh-static-header .bgh-nav__list > li:has(> a.is-active) {
    background: #b22e19;
  }

  .bgh-static-header .bgh-nav__list > li > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 12px 0;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .bgh-static-header .bgh-nav__list > li > a:hover,
  .bgh-static-header .bgh-nav__list > li > a.is-active {
    color: #fff;
    text-decoration: none;
  }

  .bgh-static-header .bgh-nav__list > li > a::before,
  .bgh-static-header .bgh-nav__list > li:has(> ul) > a::after {
    display: none;
  }

  .bgh-submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 43px;
    margin-left: 4px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .bgh-submenu-toggle::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform .16s ease;
  }

  .bgh-submenu-toggle[aria-expanded="true"]::before {
    transform: rotate(180deg);
  }

  .bgh-static-header .bgh-nav__list ul {
    flex: 0 0 100%;
    position: static;
    display: none;
    min-width: 0;
    margin: 0;
    padding: 0;
    background: #7b1000;
    box-shadow: none;
  }

  .bgh-static-header .bgh-nav__list li.is-submenu-open > ul {
    display: block;
  }

  .bgh-static-header .bgh-nav__list ul li {
    border-top: 1px solid rgba(255, 255, 255, .11);
  }

  .bgh-static-header .bgh-nav__list ul a {
    display: block;
    padding: 11px 18px;
    color: #fff;
    font-size: 13px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .bgh-static-header .bgh-nav__list ul a:hover,
  .bgh-static-header .bgh-nav__list ul a.is-active {
    background: #b22e19;
    color: #fff;
    text-decoration: none;
  }

  .bgh-menu-toggle[aria-expanded="true"] .bgh-menu-toggle__bars {
    background: transparent;
  }

  .bgh-menu-toggle[aria-expanded="true"] .bgh-menu-toggle__bars::before {
    top: 0;
    transform: rotate(45deg);
  }

  .bgh-menu-toggle[aria-expanded="true"] .bgh-menu-toggle__bars::after {
    top: 0;
    transform: rotate(-45deg);
  }
}
