/* ═══════════════════════════════════════════════════════════
   PAGE: Lost & Found — hidden contact form (noindex)
   ═══════════════════════════════════════════════════════════ */

/* ── Page Header ─────────────────────────────────────────── */
.page-header {
  padding-top: calc(var(--nav-h) + var(--ruler-h) + 72px);
  padding-bottom: 72px;
  position: relative;
  overflow: hidden;
}
.page-header .dot-grid-subtle {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 50%, transparent 40%, rgba(14, 26, 35, 0.8) 100%);
  z-index: 1;
  pointer-events: none;
}
.page-header::before {
  content: '';
  position: absolute;
  top: calc(var(--nav-h) + var(--ruler-h) + 16px);
  left: 20px;
  width: 16px; height: 16px;
  border-top: 1.5px solid var(--primary);
  border-left: 1.5px solid var(--primary);
  opacity: 0.4;
  z-index: 3;
}
.page-header .container { position: relative; z-index: 2; }

.page-title {
  font-family: var(--font-display);
  font-weight: var(--weight-extrabold);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: var(--space-5);
}
.page-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.65;
}

[data-theme="light"] .page-header::after {
  background: radial-gradient(ellipse 80% 60% at 30% 50%, transparent 40%, rgba(242, 246, 248, 0.6) 100%);
}

/* ── Form Section ────────────────────────────────────────── */
.lost-section {
  padding: var(--space-8) 0 var(--space-20);
}
/* ── Form ────────────────────────────────────────────────── */
.lost-form {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.lost-form__honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.lost-form__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.lost-form__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.lost-form__hint {
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
  font-weight: var(--weight-regular);
}

.lost-form__input {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 3px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.lost-form__input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}
.lost-form__input:hover {
  border-color: var(--border-bright);
}
.lost-form__input:focus,
.lost-form__input:focus-visible {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--glow);
}
.lost-form__input--textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.55;
}

.lost-form__actions {
  margin-top: var(--space-3);
}

.lost-form__submit {
  width: auto;
}


.lost-form__help {
  margin-top: calc(-1 * var(--space-1));
  font-size: var(--text-xs);
  color: var(--text-muted);
}
