/* ── Quote Hero ── */
.qt-hero {
  height: 160px;
  min-height: unset;
  display: flex;
  align-items: center;
  padding: 0 56px;
  position: relative;
  overflow: hidden;
  background: var(--black);
  border-bottom: 1px solid var(--gold-rule);
  margin-top: 72px;
}
.qt-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/bg-freight.jpg');
  background-size: cover;
  background-position: center;
  opacity: .08;
  z-index: 0;
}
.qt-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.qt-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.qt-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300;
  line-height: 1.06;
  color: var(--off-white);
  margin: 0 0 8px;
}
.qt-hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.qt-hero-sub {
  font-size: 14px;
  color: var(--steel-light);
  line-height: 1.75;
  max-width: 520px;
}
.qt-setup {
  padding: 0px 0 80px;
  background: var(--black);
  border-bottom: 1px solid var(--gold-rule);
}

@media (max-width: 900px) {
  .qt-hero { padding: 0 24px 48px; }
  .qt-setup { padding: 48px 0 80px; }
}
input[type="date"] {
  cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.form-input[type="date"] {
  position: relative;
}