/* Start custom CSS for html, class: .elementor-element-254a37e */:root{
  --bes-bg: #f6f1ea;
  --bes-bg-strong: #efe6dc;
  --bes-text: #2f241d;
  --bes-muted: #7b685d;
  --bes-accent: #6f4e37;
  --bes-accent-dark: #4b3528;
  --bes-line: rgba(75, 53, 40, 0.12);
  --bes-shadow: 0 16px 40px rgba(58, 39, 28, 0.08);
  --bes-shadow-strong: 0 18px 60px rgba(58, 39, 28, 0.14);
  --bes-radius: 18px;
  --bes-container: 1280px;
}

body{
  overflow-x: hidden;
}

body.bes-menu-open{
  overflow: hidden;
}

.bes-header,
.bes-header *{
  box-sizing: border-box;
}

.bes-header{
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: rgba(246, 241, 234, 0.84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: .35s ease;
}

.bes-header.is-scrolled{
  box-shadow: var(--bes-shadow);
  border-bottom: 1px solid var(--bes-line);
  background: rgba(246, 241, 234, 0.94);
}

.bes-header__inner{
  width: min(var(--bes-container), calc(100% - 40px));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bes-header__brand{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.bes-header__logo{
  display: block;
  width: auto;
  height: 56px;
  max-width: 220px;
  object-fit: contain;
}

.bes-header__nav{
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.bes-header__menu{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 34px;
}

.bes-header__item{
  position: relative;
}

.bes-header__item > a{
  display: inline-block;
  text-decoration: none;
  color: var(--bes-text);
  font-size: .96rem;
  font-weight: 500;
  padding: 6px 0;
  transition: color .25s ease;
}

.bes-header__item > a:hover{
  color: var(--bes-accent);
}

.bes-header__item--has-dropdown .bes-header__dropdown{
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .28s ease;
  z-index: 30;
}

.bes-header__item--has-dropdown:hover .bes-header__dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bes-header__dropdown a{
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--bes-text);
  transition: .25s ease;
}

.bes-header__dropdown a:hover{
  background: rgba(0,0,0,.05);
  color: var(--bes-accent);
}

.bes-header__actions{
  display: flex;
  align-items: center;
  gap: 14px;
}

.bes-header__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--bes-accent-dark);
  color: #fff !important;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 600;
  box-shadow: var(--bes-shadow);
  transition: .25s ease;
}

.bes-header__cta:hover{
  background: var(--bes-accent);
  color: #fff !important;
  transform: translateY(-1px);
}

.bes-header__toggle{
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid var(--bes-line);
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.bes-header__toggle span{
  display: block;
  width: 18px;
  height: 1.7px;
  border-radius: 99px;
  background: var(--bes-accent-dark);
  transition: .3s ease;
}

.bes-header__toggle:hover,
.bes-header__toggle:focus,
.bes-header__toggle:active{
  background: transparent !important;
  color: inherit !important;
}

.bes-header__toggle:hover span,
.bes-header__toggle:focus span,
.bes-header__toggle:active span{
  background: var(--bes-accent-dark) !important;
}

.bes-header.is-menu-open .bes-header__toggle span:nth-child(1){
  transform: translateY(4px) rotate(45deg);
}

.bes-header.is-menu-open .bes-header__toggle span:nth-child(2){
  transform: translateY(-4px) rotate(-45deg);
}

.bes-mobile{
  display: none;
}

@media (max-width: 1024px){
  .bes-header__nav{
    display: none;
  }

  .bes-header__cta{
    display: none;
  }

  .bes-header__toggle{
    display: inline-flex;
  }

  .bes-header__inner{
    min-height: 78px;
    width: min(var(--bes-container), calc(100% - 28px));
  }

  .bes-header__logo{
    height: 46px;
    max-width: 180px;
  }

  .bes-mobile{
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
  }

  .bes-header.is-menu-open .bes-mobile{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .bes-mobile__inner{
    margin: 0 14px 14px;
    padding: 18px;
    border: 1px solid var(--bes-line);
    border-radius: 24px;
    background: rgba(246, 241, 234, 0.98);
    box-shadow: var(--bes-shadow-strong);
  }

  .bes-mobile__nav{
    display: flex;
    flex-direction: column;
  }

  .bes-mobile__nav > a{
    text-decoration: none;
    color: var(--bes-text);
    font-size: 1rem;
    font-weight: 500;
    padding: 14px 4px;
    border-bottom: 1px solid var(--bes-line);
  }

  .bes-mobile__details{
    border-bottom: 1px solid var(--bes-line);
  }

  .bes-mobile__summary{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    padding: 14px 4px;
    color: var(--bes-text);
    font-size: 1rem;
    font-weight: 500;
  }

  .bes-mobile__summary::-webkit-details-marker{
    display: none;
  }

  .bes-mobile__summary-icon{
    width: 14px;
    height: 14px;
    position: relative;
    flex-shrink: 0;
  }

  .bes-mobile__summary-icon::before,
  .bes-mobile__summary-icon::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1.7px;
    background: var(--bes-accent-dark);
    transform: translate(-50%, -50%);
    transition: .25s ease;
  }

  .bes-mobile__summary-icon::after{
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .bes-mobile__details[open] .bes-mobile__summary-icon::after{
    opacity: 0;
  }

  .bes-mobile__submenu{
    padding: 2px 0 10px 14px;
    margin: 0 0 8px 4px;
    border-left: 1px solid rgba(0,0,0,.08);
  }

  .bes-mobile__submenu a{
    display: block;
    text-decoration: none;
    color: var(--bes-text);
    font-size: .96rem;
    font-weight: 500;
    padding: 10px 0;
  }

  .bes-mobile__cta-wrap{
    padding-top: 16px;
  }

  .bes-mobile__cta{
    display: inline-flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--bes-accent-dark);
    color: #fff !important;
    text-decoration: none;
    font-size: .95rem;
    font-weight: 600;
    box-shadow: var(--bes-shadow);
  }
}

@media (max-width: 767px){
  .bes-header__logo{
    height: 42px;
    max-width: 155px;
  }

  .bes-mobile__inner{
    padding: 16px;
    border-radius: 20px;
  }
}
@media (max-width: 1024px){
  .bes-mobile__item{
    border-bottom: 1px solid var(--bes-line);
  }

  .bes-mobile__summary{
    width: 100%;
    border: 0;
    background: transparent;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    padding: 14px 4px;
    color: var(--bes-text);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    box-shadow: none !important;
    appearance: none;
    -webkit-appearance: none;
  }

  .bes-mobile__summary:hover,
  .bes-mobile__summary:focus,
  .bes-mobile__summary:active{
    background: transparent !important;
    color: var(--bes-text) !important;
    outline: none;
  }

  .bes-mobile__summary-icon{
    width: 14px;
    height: 14px;
    position: relative;
    flex-shrink: 0;
  }

  .bes-mobile__summary-icon::before,
  .bes-mobile__summary-icon::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1.7px;
    background: var(--bes-accent-dark);
    transform: translate(-50%, -50%);
    transition: .25s ease;
  }

  .bes-mobile__summary-icon::after{
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .bes-mobile__summary.is-open .bes-mobile__summary-icon::after{
    opacity: 0;
  }

  .bes-mobile__submenu{
    max-height: 0;
    overflow: hidden;
    padding: 0 0 0 14px;
    margin: 0 0 0 4px;
    border-left: 1px solid rgba(0,0,0,.08);
    transition: max-height .35s ease;
  }

  .bes-mobile__submenu a{
    display: block;
    text-decoration: none;
    color: var(--bes-text);
    font-size: .96rem;
    font-weight: 500;
    padding: 10px 0;
  }

  .bes-mobile__submenu a:last-child{
    padding-bottom: 14px;
  }
}/* End custom CSS */