.hero-atmosphere {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

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

.hero-atmosphere-copy {
  max-width: 640px;
}

.hero-atmosphere-media {
  position: relative;
}

.hero-atmosphere-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

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

.hero-lead {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  margin-top: var(--space-4);
}

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

.eyebrow {
  font-size: var(--font-size-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.72);
}

.section-light .eyebrow {
  color: rgba(30, 30, 30, 0.7);
}

.section-header {
  max-width: 800px;
  margin-bottom: var(--space-10);
}

.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-intro {
  font-size: var(--font-size-md);
  line-height: var(--line-height-relaxed);
}

.cinematic-grid {
  align-items: center;
}

.cinematic-copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.cinematic-figure,
.casino-identity-figure,
.table-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.cinematic-figure img,
.casino-identity-figure img,
.table-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.casino-identity-grid {
  align-items: stretch;
  gap: var(--space-8);
}

.nightlife-grid,
.ritual-grid,
.seasons-grid {
  align-items: stretch;
}

.shadow-light-row {
  margin-top: var(--space-8);
}

.vip-grid,
.table-grid,
.terrace-grid,
.senses-grid {
  align-items: center;
  gap: var(--space-8);
}

.table-copy {
  max-width: 640px;
}

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

.cta-final-copy {
  max-width: 640px;
}

.cta-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.section-terrace {
  border-top: 1px solid rgba(30, 30, 30, 0.08);
  border-bottom: 1px solid rgba(30, 30, 30, 0.08);
}

.section-cinematic,
.section-senses,
.section-ritual,
.section-seasons {
  position: relative;
}

.section-cinematic::before,
.section-senses::before,
.section-ritual::before,
.section-seasons::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 0 0, rgba(200, 164, 90, 0.12), transparent 55%),
              radial-gradient(circle at 100% 100%, rgba(30, 94, 79, 0.18), transparent 55%);
  opacity: 0.35;
  mix-blend-mode: soft-light;
}

.section-light.section-cinematic::before,
.section-light.section-senses::before,
.section-light.section-ritual::before,
.section-light.section-seasons::before {
  opacity: 0.18;
}

.section-cinematic > .container,
.section-senses > .container,
.section-ritual > .container,
.section-seasons > .container {
  position: relative;
  z-index: 1;
}

.section-table {
  position: relative;
}

.section-table::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0, rgba(200, 164, 90, 0.22), transparent 55%);
  opacity: 0.4;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.section-table > .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero-atmosphere-inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  }
}

@media (max-width: 768px) {
  .hero-atmosphere-inner {
    grid-template-columns: 1fr;
  }

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

  .hero-atmosphere-media {
    order: -1;
  }

  .section-header {
    text-align: left;
  }

  .section-header.text-center {
    text-align: center;
  }

  .cta-final-inner {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-atmosphere-figure img,
  .cinematic-figure img,
  .casino-identity-figure img,
  .table-figure img {
    transform: none !important;
  }
}
