/* Storefront conversion and mobile readability pass. */
.hero-actions {
  flex-wrap: wrap;
  gap: 14px 18px;
}

/* The existing Shop link becomes the visually dominant first action. */
.hero-actions .text-link {
  order: -1;
  min-height: 52px;
  padding: 15px 24px;
  border: 1px solid var(--ivory);
  background: var(--ivory);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-weight: 700;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}

.hero-actions .text-link span {
  margin-left: 0;
  color: var(--wine-light);
}

.hero-actions .text-link:hover,
.hero-actions .text-link:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--wine);
  transform: translateY(-2px);
}

.hero-actions .text-link:hover span,
.hero-actions .text-link:focus-visible span {
  color: var(--wine);
}

.hero-actions .button-light {
  order: 1;
  box-shadow: none;
  border-color: rgba(255,255,255,.56);
  background: transparent;
  color: rgba(255,255,255,.94);
}

.hero-actions .button-light:hover,
.hero-actions .button-light:focus-visible {
  border-color: var(--gold);
  background: rgba(185,145,83,.16);
  color: #fff;
}

.wholesale-hero-offer {
  max-width: 620px;
  margin-top: 26px;
}

.wholesale-hero-offer small {
  display: block;
  max-width: 570px;
  line-height: 1.65;
}

.hero-meta {
  max-width: 760px;
}

@media (max-width: 740px) {
  .hero-copy {
    min-height: auto;
    padding-top: 46px;
    padding-bottom: 34px;
  }

  .hero h1 {
    margin: 22px 0 16px;
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.12;
  }

  .hero-intro {
    font-size: 14px;
    line-height: 1.72;
  }

  .hero-actions {
    width: 100%;
    margin-top: 24px;
  }

  .hero-actions .text-link,
  .hero-actions .button-light {
    width: 100%;
  }

  .wholesale-hero-offer {
    width: 100%;
    margin-top: 20px;
  }

  .hero-meta {
    gap: 0;
    margin-top: 28px;
  }

  .hero-meta div {
    padding: 8px 0;
  }
}
