/* ========================================
   DEV PASSWORD GATE
   Remove this file when going live
   ======================================== */
.gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.gate-overlay.unlocked { display: none; }

.gate-box {
  text-align: center;
  max-width: 360px;
  padding: 0 24px;
}

.gate-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 8px;
}

.gate-sub {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 40px;
}

.gate-input-row {
  display: flex;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
}

.gate-input {
  flex: 1;
  padding: 12px 16px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.85rem;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.gate-input::placeholder { color: rgba(255,255,255,0.3); }

.gate-btn {
  padding: 12px 20px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.gate-btn:hover { background: rgba(255,255,255,0.25); }

.gate-error {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.75rem;
  color: #8B2020;
  margin-top: 12px;
  min-height: 1.2em;
}
