/* hero.css — главный баннер категории */

.hero {
  margin-top: 14px;
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% 50%, #5a4316 0%, #2a1f0c 38%, #161208 70%, #0d0a05 100%);
  color: #fff;
  min-height: 280px;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 90% 50%, rgba(245,180,0,.18), transparent 60%),
    radial-gradient(40% 60% at 10% 20%, rgba(255,255,255,.05), transparent 50%);
  z-index: 0;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 40px 44px;
  max-width: 560px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 12px;
  color: rgba(255,255,255,.75);
  margin-bottom: 18px;
}
.hero-eyebrow__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(245,180,0,.6);
  animation: hero-pulse 2.2s infinite;
}
@keyframes hero-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(245,180,0,.55); }
  70%  { box-shadow: 0 0 0 10px rgba(245,180,0,0); }
  100% { box-shadow: 0 0 0 0   rgba(245,180,0,0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow__pulse { animation: none; }
}

.hero h1 {
  margin: 0 0 14px;
  font-weight: 700;
  font-size: var(--fs-h1);
  line-height: var(--lh-h1);
  letter-spacing: var(--tr-h1);
  color: #fff;
}
.hero h1 .accent {
  background: linear-gradient(180deg,#ffd861,#f5b400);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  margin: 0 0 22px;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.5;
  max-width: 430px;
}

.hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero__art {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 46%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(60% 60% at 50% 50%, rgba(245,180,0,.22), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
}
.hero__art img,
.hero__art svg {
  width: 78%;
  height: 78%;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.4));
  object-fit: contain;
}
