.hero--atmosphere {
  position: relative;
  padding-top: var(--space-40);
  padding-bottom: var(--space-40);
}

.hero-atmosphere-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 0, rgba(201,150,59,0.32), transparent 60%),
    radial-gradient(circle at 90% 20%, rgba(214,40,57,0.55), transparent 60%),
    radial-gradient(circle at 50% 100%, rgba(5,10,20,0.95), transparent 65%);
  opacity: 0.9;
  mix-blend-mode: screen;
}

.hero-atmosphere__content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-20);
  align-items: center;
}

.hero-atmosphere__text {
  max-width: 640px;
}

.hero-kicker {
  margin-bottom: var(--space-4);
  font-size: var(--font-size-xs);
}

.hero-atmosphere__ctas {
  margin-top: var(--space-10);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.hero-atmosphere__meta {
  margin-top: var(--space-10);
  font-size: var(--font-size-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-atmosphere__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-atmosphere__figure {
  width: 100%;
  max-width: 420px;
}

.hero-atmosphere__floating {
  position: absolute;
  border-radius: 999px;
  mix-blend-mode: screen;
  opacity: 0.6;
}

.hero-atmosphere__floating--chips {
  width: 160px;
  height: 160px;
  top: -20px;
  right: -10px;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.45), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(214,40,57,0.9), transparent 65%);
}

.hero-atmosphere__floating--cards {
  width: 220px;
  height: 120px;
  bottom: -24px;
  left: -40px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(201,150,59,0.15));
  box-shadow: 0 18px 48px rgba(0,0,0,0.9);
}

.hero-atmosphere__floating--smoke {
  width: 260px;
  height: 260px;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 70%);
}

.atmosphere-section {
  position: relative;
}

.atmosphere-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: var(--space-20);
  align-items: center;
}

.atmosphere-grid--reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.atmosphere-inline-cta {
  margin-top: var(--space-10);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.atmosphere-visual-block {
  position: relative;
  min-height: 220px;
}

.atmosphere-chip-stack {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 260px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 0, rgba(255,255,255,0.4), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(214,40,57,0.75), transparent 60%),
    linear-gradient(160deg, #111318, #1e2128);
  box-shadow: var(--shadow-strong);
}

.atmosphere-light-band {
  position: absolute;
  left: -15%;
  right: -15%;
  bottom: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,150,59,0.7), transparent);
  opacity: 0.8;
}

.atmosphere-section--nightlife {
  overflow: hidden;
}

.atmosphere-visual-block--nightlife {
  min-height: 260px;
}

.atmosphere-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.06);
}

.atmosphere-orbit--gold {
  inset: 18% 8% auto auto;
  height: 180px;
  background: radial-gradient(circle at 30% 20%, rgba(201,150,59,0.9), transparent 65%);
}

.atmosphere-orbit--crimson {
  inset: auto 0 0 12%;
  height: 120px;
  background: radial-gradient(circle at 70% 80%, rgba(214,40,57,0.8), transparent 65%);
}

.atmosphere-orbit--mahogany {
  inset: 0 26% 30% auto;
  height: 140px;
  background: radial-gradient(circle at 50% 50%, rgba(60,34,24,0.9), transparent 70%);
}

.atmosphere-media img {
  border-radius: var(--radius-lg);
}

.atmosphere-values-grid {
  gap: var(--space-16);
}

.atmosphere-section--cta {
  padding-bottom: var(--space-32);
}

.atmosphere-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-12);
}

.atmosphere-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}

@media (max-width: 1024px) {
  .hero-atmosphere__content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-atmosphere__visual {
    order: -1;
  }

  .hero-atmosphere__content {
    gap: var(--space-16);
  }
}

@media (max-width: 768px) {
  .hero--atmosphere {
    padding-top: var(--space-32);
    padding-bottom: var(--space-28);
  }

  .hero-atmosphere__figure {
    max-width: 320px;
  }

  .hero-atmosphere__floating--chips,
  .hero-atmosphere__floating--cards,
  .hero-atmosphere__floating--smoke {
    opacity: 0.4;
  }

  .atmosphere-grid,
  .atmosphere-grid--reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .atmosphere-cta {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .parallax-layer {
    transform: none !important;
  }
}
