html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.owner-section {
  background-color: var(--illumia-off-white);
  border-color: var(--illumia-silver) !important;
}

.navbar-brand {
  display:     flex;
  align-items: center;
  gap:         12px;
}

.navbar-brand .logo {
  display:     flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar-brand .pipe {
  color:       rgba(255, 255, 255, 0.35);
  font-weight: 300;
  font-size:   1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.navbar-brand .app-name {
  color:       rgba(255, 255, 255, 0.85);
  font-size:   0.9375rem;
  font-weight: 400;
  white-space: nowrap;
}

.opacity-70 {
  opacity: .7;
}

.content-narrow {
  max-width:    560px;
  margin-left:  auto;
  margin-right: auto;
}

/* Honeypot field — must stay in DOM so the value submits, but never visible.
   Uses position + opacity rather than display:none so no CSS !important rule
   can accidentally reveal it. */
.form-trap {
  position:       absolute !important;
  left:           -9999px !important;
  top:            -9999px !important;
  width:          1px !important;
  height:         1px !important;
  overflow:       hidden !important;
  opacity:        0 !important;
  pointer-events: none !important;
  clip:           rect(0, 0, 0, 0) !important;
  white-space:    nowrap !important;
}
