/* Password gate overlay — hide page until unlocked */
html.nh-gate-locked body > *:not(#nh-gate) {
  visibility: hidden !important;
}

#nh-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(169, 136, 94, 0.18), transparent 55%),
    linear-gradient(180deg, #f7f4ef 0%, #ebe4d8 100%);
  font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  visibility: visible !important;
}

.nh-gate__card {
  width: min(420px, 100%);
  background: #fffdf9;
  border: 1px solid rgba(74, 64, 54, 0.16);
  border-radius: 4px;
  padding: 42px 36px 32px;
  text-align: center;
  box-shadow: 0 30px 60px -40px rgba(74, 64, 54, 0.45);
}

.nh-gate__eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #a9885e;
  margin-bottom: 18px;
}

.nh-gate__title {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 500;
  font-size: 34px;
  color: #4a4036;
  letter-spacing: 0.02em;
}

.nh-gate__sub {
  margin: 0 0 28px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: #7d7266;
}

.nh-gate__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nh-gate__input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 1px solid rgba(74, 64, 54, 0.2);
  border-radius: 3px;
  background: #f7f4ef;
  color: #2c2620;
  font: inherit;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.nh-gate__input:focus {
  outline: none;
  border-color: #a9885e;
}

.nh-gate__btn {
  padding: 14px 18px;
  border: 1px solid #2f3a34;
  background: #2f3a34;
  color: #f7f4ef;
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.nh-gate__btn:hover {
  background: transparent;
  color: #2f3a34;
}

.nh-gate__error {
  margin: 4px 0 0;
  font-size: 13px;
  color: #8a3b2b;
}

.nh-gate__foot {
  margin: 28px 0 0;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b3a79a;
}
