.support-hero {
  border: 2px solid var(--amber);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 211, 106, .18), transparent 28rem),
    linear-gradient(180deg, rgba(20, 14, 2, .98), rgba(3, 16, 8, .97));
  box-shadow: 0 0 28px rgba(255, 211, 106, .28), inset 0 0 34px rgba(255, 211, 106, .06);
  text-align: center;
}

.support-hero h1 {
  color: #fff4c7;
  font-size: clamp(2.7rem, 7vw, 5.5rem);
  text-shadow: 0 0 8px #fff, 0 0 20px var(--amber), 0 0 42px rgba(255, 211, 106, .75);
}

.coffee-feature {
  border: 2px solid var(--amber);
  padding: clamp(24px, 5vw, 48px);
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 211, 106, .13), rgba(3, 16, 8, .98));
  box-shadow: 0 0 32px rgba(255, 211, 106, .24);
}

.coffee-feature h2 {
  color: #fff4c7;
  font-size: clamp(2rem, 5vw, 3.8rem);
  text-shadow: 0 0 12px rgba(255, 211, 106, .9);
}

.coffee-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.coffee-button {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: center;
  padding: 20px 26px;
  border: 2px solid var(--amber);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffd36a, #b87900);
  color: #080500;
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-shadow: none;
  box-shadow: 0 0 18px rgba(255, 211, 106, .7), inset 0 1px 0 rgba(255, 255, 255, .65);
  border-bottom-style: solid;
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

.coffee-button:hover,
.coffee-button:focus-visible {
  color: #000;
  border-color: #fff4c7;
  transform: translateY(-2px) scale(1.015);
  filter: brightness(1.1);
  box-shadow: 0 0 26px rgba(255, 211, 106, .95), 0 0 52px rgba(255, 211, 106, .38);
}

.support-note {
  max-width: 800px;
  margin: 18px auto 0;
  color: var(--green-soft);
}

@media (prefers-reduced-motion: reduce) {
  .coffee-button { transition: none; }
}
