/* Shared lander primitives. Each domain overrides color, type, and layout in its own page. */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; }
img, svg { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }

.skip {
  position: absolute;
  left: 0.8rem;
  top: -3.2rem;
  background: #111;
  color: #fff;
  padding: 0.55rem 0.85rem;
  z-index: 80;
  font-weight: 700;
  text-decoration: none;
}
.skip:focus { top: 0.8rem; }

.inquiry .field { margin: 0 0 0.85rem; }
.inquiry label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
}
.inquiry input,
.inquiry textarea {
  width: 100%;
  border: 1px solid currentColor;
  background: #fff;
  padding: 0.72rem 0.85rem;
  border-radius: 3px;
}
.inquiry textarea { min-height: 6.5rem; resize: vertical; }
.inquiry button[type="submit"] {
  cursor: pointer;
  border: 0;
  width: 100%;
  padding: 0.9rem 1.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.inquiry button[type="submit"]:hover { filter: brightness(1.05); }
.inquiry .fine {
  font-size: 0.78rem;
  line-height: 1.45;
  margin: 0.85rem 0 0;
  opacity: 0.82;
}
.inquiry .fallback { margin-top: 0.65rem; font-size: 0.85rem; }
.inquiry .fallback a { text-underline-offset: 2px; }

@media (min-width: 720px) {
  .inquiry .row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }
button:focus-visible, input:focus-visible, textarea:focus-visible, a:focus-visible {
  outline: 2px solid currentColor; outline-offset: 3px;
}
