/* “Book a stay” CTA + nav-actions (sits outside #navMenu drawer) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.nav-book {
  mix-blend-mode: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-family: 'Jost', 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: #0f0e0c !important;
  background: #c9a96e;
  border: 1px solid rgba(201, 169, 110, 0.95);
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
  white-space: nowrap;
}

.nav-book:hover {
  background: #d4b67d;
  border-color: #d4b67d;
}

.nav-book--active {
  opacity: 1;
  box-shadow: inset 0 0 0 1px rgba(15, 14, 12, 0.25);
}

nav.nav-on-light .nav-book {
  mix-blend-mode: normal;
  color: #0f0e0c !important;
  background: #c9a96e;
}

@media (max-width: 820px) {
  .nav-actions {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-left: auto;
  }

  .nav-book {
    padding: 8px 12px;
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .nav-menu .nav-book {
    color: #0f0e0c !important;
  }
}
