.hero-offer .ho-copy {
  appearance: none;
  flex: 0 0 auto;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--amber-deep);
  border-radius: 9px;
  background: #fff;
  color: var(--amber-deep);
  font: 700 14px/1.2 var(--sans);
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.hero-offer .ho-copy:hover {
  background: var(--amber-deep);
  color: #fff;
  transform: translateY(-1px);
}
.hero-offer .ho-copy:focus-visible {
  outline: 3px solid rgba(217, 119, 6, .28);
  outline-offset: 2px;
}
@media (max-width: 640px) {
  .hero-offer .ho-copy { width: 100%; }
}
