header.desktop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--dark-green);
    z-index: 99;
}

header.desktop .wrap {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    padding: 25px 0;
    border-bottom: solid 1px rgba(239, 226, 203, 0.10);
}

header a.logo img {
    height: 55px;
    width: auto;
}

.header-menu button,
header.desktop a {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
    color: var(--white);
    margin: 0;
    line-height: 140%;
    background: transparent;
    border: none;
    padding: 0;
    position: relative;
    z-index: 1001;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

/* Flyout Menu */

.flyout-container {
    position: relative;
  }
  
  .flyout {
    position: fixed;
    top: 0;
    left: -100%;
    width: 533px;
    height: 100%;
    background-color: var(--beige);
    box-shadow: 2px 2px 6px 0px rgba(20, 20, 20, 0.25);
    transition: ease 0.6s;
    z-index: 1000;
    max-width: 100%;
    display: flex;
  }

  .flyout.open {
    left: 0;
  }
  
  .flyout-panel {
    display: flex;
    flex-direction: column;
    padding: 176px clamp(50px, 5vw, 100px) 200px clamp(50px, 5vw, 100px);
    overflow-y: scroll;
    width: 100%;
  }
  
  .flyout-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 4vw, 80px);
}

.header-menu {
  width: 60px;
}
  
  .flyout ul {
    list-style-type: none;
    padding: 0;
  }
  
  .flyout li {
    margin: 15px 0;
  }
  
  header.desktop .flyout a {
    color: var(--green);
    font-family: 'Playfair Display', sans-serif;
    font-size: clamp(24px, 4vw, 40px);
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0;
    text-transform: capitalize;
  }
  
  .menu-button {
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }

  button.menu-button.open span {
  color: rgba(91, 93, 44, 0.40);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

header.desktop .wrap {
  text-transform: uppercase;
}

button.menu-button {
    text-align: start;
}

.flyout-content:hover a:not(:hover) {
  opacity: 0.5;
}

.flyout-content a {
  transition: 0.6s ease;
  opacity: 1;
}

@media (max-width: 800px) {
  header a.logo img {
    height: 40px;
  }

  header.desktop .wrap a:nth-of-type(2) {
    display: none;
  }

  button.menu-button {
    font-size: 14px;
  }


  header.desktop .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
}