/* ============================================================
   RAMSAROOP PROFESSIONAL — PER-FLAGSHIP "NOTIFY ME"
   ------------------------------------------------------------
   css/notify-me.css  ·  Site Excellence Item C §2 · additive, self-contained
   Built entirely on tokens-2100.css / style.css tokens (navy / gold / ivory /
   teal / charcoal) with fallbacks, so it renders correctly on the 2100 obsidian
   interior surface AND gracefully elsewhere. Scoped to #notify-me so legacy and
   non-flagship pages are untouched. Honest capture-only control: it records
   interest; it never implies a live mailing path.
   ============================================================ */
#notify-me {
  --nm-surface: var(--bg-surface1, #121A24);
  --nm-hair: var(--line-hair, rgba(201,210,220,0.22));
  --nm-text: var(--text-primary, #F7F3EA);
  --nm-text2: var(--text-secondary, #C9D2DC);
  --nm-muted: var(--text-data, #8A94A0);
  --nm-gold: var(--accent-gold, #C6A15B);
  --nm-gold-active: var(--accent-gold-active, #E0C078);
  display: block;
  margin: 2rem 0;
  max-width: 52rem;
}
#notify-me .nm-card {
  background: var(--nm-surface);
  border: 1px solid var(--nm-hair);
  border-radius: 10px;
  padding: 1.2rem 1.4rem;
}
#notify-me .nm-open {
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--nm-gold);
  background: transparent;
  border: 1px dashed var(--nm-gold);
  border-radius: 6px;
  padding: 0.7rem 1.1rem;
  cursor: pointer;
  min-height: 44px;
  width: 100%;
  text-align: center;
}
#notify-me .nm-open:hover { border-color: var(--nm-gold-active); color: var(--nm-gold-active); }
#notify-me .nm-open:disabled { opacity: 0.75; cursor: default; }
#notify-me .nm-panel {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--nm-hair);
}
#notify-me .nm-intro {
  color: var(--nm-text2);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 0.9rem;
}
#notify-me .nm-form { display: flex; flex-direction: column; gap: 0.8rem; }
#notify-me .nm-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nm-muted);
  font-weight: 600;
}
#notify-me input[type="email"] {
  font: inherit;
  color: var(--nm-text);
  background: var(--bg-canvas, #0A0F16);
  border: 1px solid var(--nm-hair);
  border-radius: 6px;
  padding: 0.7rem 0.85rem;
  min-height: 44px;
}
#notify-me input[type="email"]:focus { outline: 2px solid var(--nm-gold); outline-offset: 1px; }
#notify-me .nm-consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--nm-text2);
  font-size: 0.86rem;
  line-height: 1.5;
  cursor: pointer;
}
#notify-me .nm-consent input { margin-top: 0.15rem; }
#notify-me .nm-submit {
  font: inherit;
  font-weight: 600;
  color: #0A0F16;
  background: var(--nm-gold);
  border: none;
  border-radius: 6px;
  padding: 0.75rem 1.2rem;
  cursor: pointer;
  min-height: 44px;
  align-self: flex-start;
}
#notify-me .nm-submit:hover { background: var(--nm-gold-active); }
#notify-me .nm-status {
  margin: 0.7rem 0 0;
  color: var(--nm-text2);
  font-size: 0.9rem;
  line-height: 1.5;
}
@media (min-width: 640px) {
  #notify-me .nm-open { width: auto; text-align: left; }
  #notify-me .nm-form { flex-direction: row; flex-wrap: wrap; align-items: center; }
  #notify-me .nm-label, #notify-me input[type="email"] { flex: 1 1 220px; }
  #notify-me .nm-submit { align-self: auto; }
}
