* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #222;
  background: #fff;
}

/* home search — input + button, top-centered */
.lookup {
  display: flex;
  position: relative;
  width: 37%;
  min-width: 320px;
  max-width: 560px;
  margin: 5% auto 0;
}
.term {
  flex: 0 0 75%;
  height: 40px;
  border: 1px solid #d5d5d5;
  border-right: 0;
  padding-left: 12px;
  font-size: 18px;
  color: #222;
  outline: none;
}
.term::placeholder { color: #9a9a9a; }
.term:focus { border-color: #06ae8e; }
.go {
  flex: 0 0 25%;
  height: 40px;
  cursor: pointer;
  background: #06ae8e url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23ffffff'%20stroke-width='2.2'%20stroke-linecap='round'%3E%3Ccircle%20cx='10.5'%20cy='10.5'%20r='6.5'/%3E%3Cline%20x1='15.5'%20y1='15.5'%20x2='21'%20y2='21'/%3E%3C/svg%3E") no-repeat center;
  background-size: 22px 22px;
}
.go:hover { background-color: #05997c; }

/* legal links — bottom-right */
.links {
  position: fixed;
  bottom: 1%;
  right: 1%;
  left: 0;
  text-align: right;
}
.links a {
  color: grey;
  font-size: 11px;
  text-decoration: none;
  margin-right: 10px;
}
.links a:hover { text-decoration: underline; }

/* centered text pages (contact) */
.stage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  text-align: center;
}
.lede {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 16px;
}
.copy { font-size: 17px; line-height: 1.7; color: #333; margin: 8px 0; }
.mail { color: #06ae8e; text-decoration: underline; }
