#header .menu {
  display: none;
}

@media screen and (width < 1024px) {
  #header .menu {
    position: fixed;
    top: 30px;
    right: 20px;
    z-index: 5;
    display: block;
    width: 30px;
    height: 19px;
    cursor: pointer;
  }
  #header .menu span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--accent-wine);
    box-shadow: 0 0 2px 1px #ffffff;
    transition: ease 0.4s;
  }
  #header .menu span:nth-child(2) {
    margin: 8px 0;
  }
  #gnav {
    position: fixed;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    height: auto;
    padding: 10px;
    overflow-y: auto;
    color: #ffffff;
    visibility: hidden;
    opacity: 0;
    transition: ease 0.5s;
  }
  #gnav ul {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin-top: auto;
    text-align: center;
  }
  #gnav .tel a::before {
    filter: invert(1);
  }
  #gnav .contact {
    width: auto;
    height: auto;
    margin-bottom: auto;
    background-color: transparent;
  }
  #gnav .contact a {
    flex-direction: row;
    gap: 11px;
  }
  body.open {
    overflow: hidden;
  }
  body.open #header .menu span {
    background-color: #ffffff;
    box-shadow: none;
  }
  body.open #header .menu span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  body.open #header .menu span:nth-child(2) {
    opacity: 0;
  }
  body.open #header .menu span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  body.open #gnav {
    visibility: visible;
    background: color-mix(in srgb, var(--accent-wine) 80%, transparent);
    opacity: 1;
  }
}
@media screen and (width < 768px) {
  #header #gnav > ul {
    font-size: 16px;
  }
}
/*# sourceMappingURL=sp_nav.css.map */