/* J. Lee Murphy — VIP Notice Band
   Loaded separately to isolate from main stylesheet parsing. */

.vip-notice {
  background: #0b0b0d;
  color: #e8e3d8;
  padding: 6rem 1.5rem;
  border-top: 1px solid rgba(232, 227, 216, 0.08);
  border-bottom: 1px solid rgba(232, 227, 216, 0.08);
  position: relative;
}

.vip-notice::before,
.vip-notice::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: rgba(232, 227, 216, 0.25);
}
.vip-notice::before { top: 2.25rem; }
.vip-notice::after  { bottom: 2.25rem; }

.vip-grid {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.vip-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #a89f8a;
  margin: 0 0 1.5rem;
}

.vip-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.25;
  margin: 0 0 1.25rem;
  color: #f1ece0;
}
.vip-headline em { font-style: italic; }

.vip-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #b9b2a3;
  margin: 0 auto 2.5rem;
  max-width: 540px;
}
.vip-sub em {
  font-style: italic;
  color: #d6cfbf;
}

.vip-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.vip-label {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.vip-input {
  width: 100%;
  max-width: 420px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(232, 227, 216, 0.35);
  color: #f1ece0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 0.85rem 0.25rem;
  text-align: center;
  transition: border-color 0.2s ease;
}
.vip-input::placeholder { color: #6e6759; }
.vip-input:focus {
  outline: none;
  border-bottom-color: #e8e3d8;
}

.vip-btn {
  margin-top: 0.5rem;
  background: transparent;
  color: #f1ece0;
  border: 1px solid #e8e3d8;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.vip-btn:hover,
.vip-btn:focus {
  background: #e8e3d8;
  color: #0b0b0d;
  outline: none;
}

.vip-fineprint {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: #6e6759;
  margin-top: 1.25rem;
}

/* Honeypot — hidden from humans */
.vip-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 600px) {
  .vip-notice { padding: 4.5rem 1.25rem; }
}
