/* Bauwolf background watermark */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  background-image: url('../assets/img/wolf-bg.svg');
  background-repeat: no-repeat;
  background-position: center 45%;
  background-size: min(60vw, 60vh);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0; /* sits at very back */
}
body{ position:relative; z-index: 0; }

/* Ensure tables and their contents are always above watermark */
table, table * {
  position: relative;
  z-index: 1;
  background-color: #fff; /* solid white behind text */
}


/* Site title at very top */
.site-title {
  font-size: 150%;
  font-weight: bold;
  text-align: left;
  margin: 10px 10px 20px 10px;
}


/* Basic contact form styles */
form.contact-form {
  max-width: 720px;
  margin: 20px 0 40px 0;
}
form.contact-form label {
  display: block;
  font-weight: 600;
  margin: 12px 0 6px 0;
}
form.contact-form input[type="text"],
form.contact-form input[type="email"],
form.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
}
form.contact-form button {
  margin-top: 14px;
  padding: 10px 16px;
  border: 0;
  border-radius: 10px;
  background: #111827;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
form.contact-form button:hover {
  opacity: .9;
}
.map-embed {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  margin: 10px 0 24px 0;
}
.contact-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  max-width: 720px;
}
.contact-card p { margin: 6px 0; }
