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

.atmosphere-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(212, 175, 106, 0.2), transparent 60%),
              linear-gradient(135deg, #15120f, #070606 70%);
  opacity: 0.9;
  z-index: -2;
}

.atmosphere-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: var(--space-10);
  align-items: center;
}

.atmosphere-hero__title {
  font-size: clamp(2.25rem, 3.8vw, 3.25rem);
  max-width: 22ch;
}

.atmosphere-hero__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 44ch;
}

.atmosphere-hero__actions {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.atmosphere-hero__image {
  max-width: 520px;
  margin-left: auto;
  box-shadow: var(--shadow-elevated);
}

.atmosphere-intro__image {
  box-shadow: var(--shadow-soft);
}

.atmosphere-evening {
  position: relative;
  background: radial-gradient(circle at top left, rgba(122, 34, 50, 0.18), transparent 55%),
              linear-gradient(180deg, #121212, #181413);
}

.atmosphere-evening__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.atmosphere-evening__content {
  align-self: center;
}

.atmosphere-evening__cta {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.atmosphere-sound-light__image {
  margin-top: var(--space-4);
}

.atmosphere-vip {
  position: relative;
  background: radial-gradient(circle at top right, rgba(212, 175, 106, 0.18), transparent 55%),
              linear-gradient(180deg, #181413, #121212);
}

.atmosphere-vip__header {
  max-width: 640px;
  margin: 0 auto var(--space-10);
}

.atmosphere-vip__grid .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.atmosphere-vip__link {
  margin-top: auto;
}

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

.atmosphere-cta {
  position: relative;
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
  background: radial-gradient(circle at center, rgba(212, 175, 106, 0.18), transparent 60%),
              linear-gradient(135deg, #15120f, #070606 70%);
}

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

.atmosphere-cta__text {
  max-width: 520px;
}

.atmosphere-cta__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

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

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

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

  .atmosphere-hero__image {
    max-width: 100%;
    order: -1;
  }

  .atmosphere-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .atmosphere-cta__actions {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .atmosphere-cta__actions .btn {
    flex: 1 1 180px;
  }
}

@media (max-width: 480px) {
  .atmosphere-hero__actions {
    flex-direction: column;
  }

  .atmosphere-evening__cta {
    flex-direction: column;
  }
}
