.hero-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(230, 162, 60, .18);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero-visual figcaption {
  position: absolute;
  bottom: 20px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 8px 24px rgba(23, 37, 53, .12);
  backdrop-filter: blur(8px);
}

.hero-visual figcaption strong {
  color: #d87812;
  font-size: 1.6rem;
  line-height: 1;
}

.hero-visual figcaption span {
  color: var(--navy);
  font-size: .84rem;
  font-weight: 800;
}

@media (max-width: 560px) {
  .hero-visual figcaption { bottom: 12px; left: 12px; padding: 8px 11px; }
  .hero-visual figcaption strong { font-size: 1.25rem; }
  .hero-visual figcaption span { font-size: .72rem; }
}

.coffee-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 9px 16px;
  border-radius: 999px;
  background: #e6a23c;
  color: #172535;
  text-decoration: none;
  font-weight: 900;
  transition: transform .2s, background .2s;
}

.coffee-link:hover {
  background: #f1b552;
  transform: translateY(-1px);
}
