.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  width: auto;
  min-width: 270px;
  height: 66px;
  overflow: visible;
}

.brand img,
.footer-brand img {
  width: 43px;
  height: 43px;
  object-fit: contain;
  filter: none;
  transform: none;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand strong {
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: .13em;
}

.brand small {
  margin-top: 5px;
  color: #b9b9b5;
  font-size: .52rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-brand {
  width: auto;
  height: 60px;
  overflow: visible;
}

@media (max-width: 900px) {
  .brand { min-width: 220px; height: 54px; }
  .brand img, .footer-brand img { width: 37px; height: 37px; }
  .brand strong { font-size: 1.65rem; }
  .brand small { font-size: .44rem; }
}

.quote-form { display: grid; gap: 19px; margin-top: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.quote-form label { display: grid; gap: 7px; font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.quote-form label > span { color: #111; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid rgba(13,14,14,.42); border-radius: 0; background: rgba(255,255,255,.1); color: #111; padding: 13px 14px; font: 500 1rem/1.4 var(--body); text-transform: none; letter-spacing: 0; outline: none; transition: background .2s,border-color .2s; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: #111; background: rgba(255,255,255,.28); }
.quote-form textarea { resize: vertical; min-height: 132px; }
.quote-form .button { border: 0; cursor: pointer; justify-self: start; font-family: var(--body); }
.form-note { margin: -7px 0 0; font-size: .73rem; color: rgba(13,14,14,.72); }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-success { margin: 28px 0; padding: 18px 20px; border: 1px solid rgba(13,14,14,.4); background: rgba(255,255,255,.2); }
.form-success strong, .form-success span { display: block; }
.form-success strong { font-family: var(--display); font-size: 1.5rem; text-transform: uppercase; }
.form-success span { margin-top: 3px; font-size: .9rem; }

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .quote-form .button { width: 100%; }
}

/* Keep every control aligned even when its label includes a required marker. */
.quote-form label {
  display: block;
}

.quote-form label > span {
  display: inline;
}

.quote-form label > input,
.quote-form label > select,
.quote-form label > textarea {
  display: block;
  margin-top: 7px;
}

.form-row > label {
  align-self: start;
}
