.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  height: 12rem;
  padding: 1rem 5rem;
  background: rgba(255, 252, 249, 0.97);
  border-bottom: 1px solid #eee;
}

.site-logo {
  width: 14rem;
  height: 10rem;
  overflow: hidden;
}

.site-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.global-nav {
  display: flex;
  gap: 4rem;
  margin-left: auto;
  font-family: var(--en);
  font-size: 1.8rem;
}

.global-nav a {
  position: relative;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  border-bottom: 1px solid var(--blue);
  transform: scaleX(0);
  transition: 0.25s;
}

.global-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-left: 3rem;
}

.reserve-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.8rem;
  border-radius: 1.7rem;
  background: var(--mint);
  color: #fff;
  line-height: 1.2;
}

.reserve-button img {
  width: 3.8rem;
}

.reserve-button small {
  display: block;
  font-size: 1rem;
}

.icon-link {
  display: grid;
  place-items: center;
  width: 5.2rem;
  aspect-ratio: 1;
  border: 1px solid #9a8f88;
  border-radius: 1.4rem;
  background: #fff;
}

.icon-link img {
  width: 3.5rem;
}

.icon-link--mail span {
  font-size: 2.4rem;
}

.hamburger,
.drawer-menu {
  display: none;
}

@media (max-width: 1200px) {
  .site-header {
    height: 8rem;
    padding: 0 2rem;
    background: rgba(255, 252, 249, 0.657);
    border-bottom: none;
  }

  .site-logo {
    width: 7rem;
    height: 7rem;
  }

  .global-nav,
  .header-actions {
    display: none;
  }

  .hamburger {
    display: grid;
    gap: 0.6rem;
    margin-left: auto;
    padding: 1rem;
    border: 0;
    background: transparent;
  }

  .hamburger span {
    display: block;
    width: 3rem;
    border-top: 1px solid var(--blue);
  }

  .drawer-menu {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    height: 100dvh;
    padding: 2rem 2.4rem 4rem;
    background: var(--cream);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    transition: 0.25s;
  }

  .drawer-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .drawer-logo {
    width: 30rem;
    flex: 0 0 auto;
  }

  .drawer-menu > a {
    font-family: var(--en);
    font-size: 2.2rem;
  }

  .drawer-actions {
    display: grid;
    gap: 1.2rem;
    width: min(32rem, 100%);
    margin-top: 1rem;
    justify-content: center;
  }

  .drawer-actions .reserve-button {
    justify-content: center;
    width: 26rem;
    height: 8rem;
    font-family: var(--serif);
    font-size: 1.5rem;
  }

  .drawer-icon-actions {
    display: grid;
    justify-content: center;
    gap: 1.2rem;
  }

  .drawer-icon-actions .icon-link {
    display: flex;
    align-items: center;

    justify-content: center;
    gap: 1rem;
    width: 26rem;
    height: 8rem;
    aspect-ratio: auto;
    padding: 1rem 1.8rem;
    border-radius: 1.7rem;
    font-family: var(--serif);
    font-size: 1.5rem;
  }

  .drawer-icon-actions svg {
    width: 2.6rem;
    height: 2.6rem;
  }

  .drawer-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    border: 0;
    background: transparent;
  }

  .drawer-close span {
    position: absolute;
    left: 0.5rem;
    top: 2rem;
    width: 3rem;
    border-top: 1px solid var(--blue);
    transform: rotate(45deg);
  }

  .drawer-close span + span {
    transform: rotate(-45deg);
  }
}
