.atmosphere-hero {
  padding-top: var(--space-16);
  padding-bottom: var(--space-12);
}

.atmosphere-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.atmosphere-breadcrumb li + li::before {
  content: "/";
  margin: 0 var(--space-1);
  color: var(--color-text-muted);
}

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

.atmosphere-hero-copy p {
  max-width: 36rem;
}

.atmosphere-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}

.atmosphere-hero-meta {
  display: grid;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.atmosphere-hero-meta dt {
  font-weight: 600;
  color: var(--color-accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--font-size-xs);
  margin-bottom: var(--space-1);
}

.atmosphere-hero-media {
  padding: var(--space-4);
}

.atmosphere-hero-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.atmosphere-hero-figure img {
  width: 100%;
  height: auto;
}

.atmosphere-hero-figure figcaption {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.atmosphere-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.atmosphere-section {
  background-color: transparent;
}

.atmosphere-section:nth-of-type(odd) {
  background: radial-gradient(circle at top, rgba(255, 59, 48, 0.06), transparent 55%);
}

.atmosphere-section-grid {
  align-items: center;
}

.atmosphere-image-card img {
  border-radius: var(--radius-md);
}

.atmosphere-image-card figcaption {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.atmosphere-list {
  list-style: none;
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}

.atmosphere-list li {
  position: relative;
  padding-left: var(--space-5);
  margin-bottom: var(--space-3);
}

.atmosphere-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: radial-gradient(circle, var(--color-primary) 0, var(--color-accent-gold) 55%, transparent 100%);
}

.atmosphere-inline-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.atmosphere-section-header {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-8);
}

.atmosphere-section-header p {
  margin-left: auto;
  margin-right: auto;
}

.atmosphere-match-grid {
  margin-top: var(--space-4);
}

.atmosphere-center-cta {
  margin-top: var(--space-8);
  text-align: center;
}

.atmosphere-interior {
  position: relative;
}

.atmosphere-interior::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0%, rgba(29, 185, 84, 0.15), transparent 60%), radial-gradient(circle at 90% 100%, rgba(245, 196, 81, 0.12), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.atmosphere-interior .container {
  position: relative;
  z-index: 1;
}

.atmosphere-experience-grid {
  margin-top: var(--space-4);
}

.atmosphere-mini-card {
  height: 100%;
}

.atmosphere-bottom-cta {
  margin-top: var(--space-8);
  text-align: center;
}

.atmosphere-bottom-cta p {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-4);
}

.atmosphere-bottom-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}

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

  .atmosphere-hero {
    padding-top: var(--space-12);
  }
}

@media (max-width: 640px) {
  .atmosphere-hero-ctas,
  .atmosphere-inline-ctas,
  .atmosphere-bottom-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .atmosphere-breadcrumb ol {
    font-size: var(--font-size-xs);
  }
}
