.hero--atmosphere {
  padding-top: var(--space-16);
  padding-bottom: var(--space-12);
  background: radial-gradient(circle at top, rgba(34, 211, 238, 0.18), transparent 55%);
}

.hero__content--atmosphere {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.hero__lead {
  max-width: 38rem;
}

.hero__image-wrapper {
  max-width: 480px;
  margin-left: auto;
}

.hero__image {
  box-shadow: var(--shadow-md);
}

.section-header__lead {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.atmosphere-grid__copy {
  display: flex;
  align-items: stretch;
}

.atmosphere-grid__copy .card {
  width: 100%;
}

.atmosphere-list {
  list-style: none;
  padding-left: 0;
}

.atmosphere-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
}

.atmosphere-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: var(--color-neon);
  box-shadow: var(--shadow-neon);
}

.atmosphere-card h3 {
  margin-bottom: var(--space-2);
}

.journey-steps__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: var(--space-4);
}

.journey-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-3);
  align-items: flex-start;
}

.journey-step__badge {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: var(--radius-full);
  background: var(--color-primary-soft);
  border: 1px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--font-size-sm);
}

.journey-step__content h3 {
  margin-bottom: var(--space-1);
}

.journey-step__content p {
  margin-bottom: 0;
}

.groups-grid {
  gap: var(--space-6);
}

.comfort-card {
  align-self: center;
}

.food-grid {
  gap: var(--space-8);
  align-items: center;
}

.food-grid__media {
  max-width: 480px;
}

.food-grid__media img {
  box-shadow: var(--shadow-md);
}

.atmosphere-events .atmosphere-card,
.atmosphere-moments .atmosphere-card {
  height: 100%;
}

.atmosphere-cta {
  padding-top: var(--space-10);
  padding-bottom: var(--space-12);
}

.atmosphere-cta__card {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(225, 29, 72, 0.18));
}

.atmosphere-cta__content {
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
}

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

  .hero__image-wrapper {
    margin-left: 0;
    max-width: 420px;
  }
}

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

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

  .journey-step__badge {
    width: 2rem;
    height: 2rem;
  }

  .food-grid__media {
    max-width: 100%;
  }

  .atmosphere-cta__content {
    text-align: left;
  }
}
