/* ===== Блок 1: герои в золотом круге ===== */
:root{
  --bg: #0B0B0B;
  --text: #FFFFFF;
  --gold-1: #8F6B1F;
  --gold-2: #D4AF37;
  --gold-3: #F6E27A;
}

.hero-blok1{
  background: var(--bg);
  color: var(--text);
  padding: clamp(48px, 6vw, 96px) 0;
}

.hero-container{
  width: min(1200px, 92vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
}

.hero-text h1{
  margin: 0 0 16px;
  font-size: clamp(28px, 3.6vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.hero-text .subtitle{
  margin: 0 0 28px;
  max-width: 52ch;
  font-size: clamp(16px, 1.4vw, 20px);
  opacity: .88;
}

.cta{ display: flex; flex-wrap: wrap; gap: 12px; }
.btn{
  display: inline-block;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
}
.btn-gold{
  color: #111;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2), var(--gold-3));
  box-shadow: 0 6px 18px rgba(212,175,55,.25);
}
.btn-ghost{
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,.32);
}

/* Визуальная часть с кругами */
.hero-visual{
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 340px;
}

.gold-ring{
  --ring-size: 320px;
  --ring-width: 10px;

  width: var(--ring-size);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;

  /* Градиентная «золотая» окантовка */
  border: var(--ring-width) solid transparent;
  background:
    linear-gradient(#111,#111) padding-box,
    conic-gradient(from 0deg, var(--gold-1), var(--gold-2), var(--gold-3), var(--gold-2), var(--gold-1)) border-box;

  box-shadow:
    0 0 0 1px rgba(212,175,55,.28) inset,
    0 20px 60px rgba(0,0,0,.60),
    0 0 40px rgba(212,175,55,.24);

  /* Появление */
  transform: translateY(10px) scale(.98);
  opacity: 0;
  transition: transform .8s cubic-bezier(.2,.65,.2,1), opacity .8s ease;
}

.gold-ring.is-in{
  transform: none;
  opacity: 1;
}

.gold-ring img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.ring-small{
  --ring-size: 220px;
  position: absolute;
  right: -30px;
  bottom: -30px;
  z-index: 0;
}

/* Адаптив */
@media (max-width: 900px){
  .hero-container{ grid-template-columns: 1fr; }
  .hero-visual{ order: -1; justify-content: center; min-height: 260px; }
  .ring-small{ right: -10px; bottom: -20px; }
}

/* Доступность: без анимаций — без скачков */
@media (prefers-reduced-motion: reduce){
  .gold-ring{ transition: none; transform: none; opacity: 1; }
}
