/* Container styling */
.cjase-menu-container-33ebdc51 {
  display: inline-block;
}

/* Burger trigger button */
.cjase-burger-trigger-33ebdc51 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 24px;
  padding: 4px;
  background: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  position: relative;
  z-index: 9999;
  box-sizing: border-box;
}

.cjase-burger-trigger-33ebdc51:focus {
  outline: none;
}

/* Three horizontal lines default state */
.cjase-burger-line-33ebdc51 {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: #FFFFFF; /* Default transparent header over hero color */
  transition: transform 300ms ease, opacity 300ms ease, background-color 300ms ease;
  position: absolute;
  left: 1px;
}

.cjase-burger-line-33ebdc51.line-1 {
  top: 6px;
}
.cjase-burger-line-33ebdc51.line-2 {
  top: 11.25px;
}
.cjase-burger-line-33ebdc51.line-3 {
  top: 16.5px;
}

/* Scrolled state: Color transitions to #3A3224 */
body.cjase-scrolled-33ebdc51 .cjase-burger-line-33ebdc51 {
  background-color: #3A3224;
}

/* Open state (when trigger has class .is-open) */
.cjase-burger-trigger-33ebdc51.is-open .cjase-burger-line-33ebdc51.line-1 {
  transform: translateY(5.25px) rotate(45deg);
}
.cjase-burger-trigger-33ebdc51.is-open .cjase-burger-line-33ebdc51.line-2 {
  opacity: 0;
}
.cjase-burger-trigger-33ebdc51.is-open .cjase-burger-line-33ebdc51.line-3 {
  transform: translateY(-5.25px) rotate(-45deg);
}

/* Open state color adjustments */
.cjase-burger-trigger-33ebdc51.is-open .cjase-burger-line-33ebdc51 {
  background-color: #3A3224; /* Standard close button state color */
}

/* Dropdown navigation panel */
.cjase-nav-panel-33ebdc51 {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(250, 249, 247, 0.98);
  border-top: 1px solid rgba(58, 50, 36, 0.10);
  box-shadow: none;
  border-radius: 0;
  z-index: 9998;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  /* Use explicit transition durations matching the precise specifications */
  transition: max-height 300ms ease, opacity 200ms ease-in, transform 200ms ease-in;
}

/* Open state animation spec: fades from opacity 0 to 1 and slides down from translateY(-8px) to 0 over 250ms ease-out. */
.cjase-nav-panel-33ebdc51.is-open {
  opacity: 1;
  transform: translateY(0);
  transition: max-height 300ms ease, opacity 250ms ease-out, transform 250ms ease-out;
}

/* Inner container */
.cjase-nav-panel-inner-33ebdc51 {
  max-width: 1600px;
  margin: 0 auto;
  padding: 32px 48px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .cjase-nav-panel-inner-33ebdc51 {
    padding: 32px 20px;
  }
}

/* Menu list */
.cjase-menu-list-33ebdc51 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cjase-menu-row-33ebdc51 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Links style */
.cjase-menu-link-33ebdc51 {
  font-family: 'Brandon Text', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #A6A6A6;
  transition: color 200ms ease;
  line-height: 1.2;
}

.cjase-menu-link-33ebdc51:hover,
.cjase-menu-link-33ebdc51.is-active {
  color: #3A3224;
}

/* Submenu trigger chevron button */
.cjase-submenu-toggle-33ebdc51 {
  background: none;
  border: none;
  padding: 4px;
  margin-left: 8px;
  cursor: pointer;
  color: #A6A6A6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cjase-submenu-toggle-33ebdc51:focus {
  outline: none;
}

.cjase-chevron-33ebdc51 {
  transition: transform 250ms ease, color 200ms ease;
}

.cjase-submenu-toggle-33ebdc51.is-open .cjase-chevron-33ebdc51 {
  transform: rotate(180deg);
  color: #3A3224;
}

/* Submenu styling */
.cjase-submenu-wrapper-33ebdc51 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 250ms ease-out;
}

.cjase-submenu-list-33ebdc51 {
  list-style: none;
  padding: 12px 0 0 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cjase-submenu-link-33ebdc51 {
  font-family: 'Brandon Text', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #747062;
  transition: color 200ms ease;
  line-height: 1.2;
}

.cjase-submenu-link-33ebdc51:hover,
.cjase-submenu-link-33ebdc51.is-active {
  color: #3A3224;
}
