.bullets {
    margin-left: 18px;
    line-height: 1.9;
}

.form {
    background: #141920;
    border: 1px solid #222834;
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
    max-width: 720px;
}

.form__row {
    margin-bottom: 12px;
}

input,
textarea {
    width: 100%;
    background: #0e1216;
    color: var(--text);
    border: 1px solid #283040;
    border-radius: 10px;
    padding: 10px 12px;
    margin-top: 6px;
}

.hero-art img {
  border-radius: 12px;     /* or 8px if you want subtler rounding */
  overflow: hidden;
  display: block;
  max-width: 100%;
  height: auto;
}
.container {
  max-width: 1120px;
  margin-inline: auto; /* centers */
  padding-inline: 1rem;
}
.section {
  padding-block: 2.5rem;
}
.section__title {
  font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
  margin-block: 0 1rem;
}

/* Labels + fields */
#contactForm .field { display: grid; gap: .5rem; }
#contactForm label {
  color: var(--text-muted, #cfd2d8);
  font-weight: 600;
  letter-spacing: .01em;
}

/* Reuse your existing input/textarea styles; enhance spacing */
#contactForm input[type="email"],
#contactForm textarea {
  margin-top: .1rem;
}

/* Hide honeypot field from humans but keep it for bots */
#contactForm input[name="_gotcha"] {
  position: absolute !important;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}


/* Hint + button */
#contactForm .form-hint {
  color: var(--text-muted, #a9afb8);
  font-size: .9rem;
  margin-top: .5rem;
}
.btn.btn-primary {
  background: var(--brand-500, #dc143c);
  color: #fff; font-weight: 600;
  border: 0; border-radius: 8px;
  padding: .85rem 1.25rem; cursor: pointer;
}
.btn.btn-primary:hover { background: var(--brand-600, #b01032); }

/* Visually hidden utility (kept for honeypot etc.) */
.sr-only {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
