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

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

@media (min-width: 768px) {
  .themed-hero__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}

.themed-hero__lead {
  max-width: 40rem;
}

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

.themed-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.themed-hero__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border-glass);
  box-shadow: var(--shadow-elevated);
}

.themed-philosophy__card {
  max-width: 48rem;
  margin: 0 auto;
}

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

.themed-section-header {
  max-width: 46rem;
  margin: 0 auto var(--space-8);
  text-align: center;
}

.themed-section-header__lead {
  margin-top: var(--space-3);
}

.themed-ideas__grid {
  margin-top: var(--space-4);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
}

.themed-idea__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(230, 194, 122, 0.7);
  background: linear-gradient(135deg, var(--color-gold-soft), rgba(15, 23, 42, 0.95));
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

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

@media (min-width: 768px) {
  .themed-scenography__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}

.themed-scenography__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border-glass);
  box-shadow: var(--shadow-soft);
}

.themed-experience__grid {
  margin-top: var(--space-4);
}

.themed-casino-scene {
  margin-top: var(--space-8);
}

.themed-casino-scene__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border-glass);
  box-shadow: var(--shadow-elevated);
}

.themed-atmosphere__grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .themed-atmosphere__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.themed-cta__card {
  margin-bottom: var(--space-4);
}

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

@media (min-width: 768px) {
  .themed-cta__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.themed-cta__text {
  max-width: 34rem;
}

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

@media (min-width: 640px) {
  .themed-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.themed-cta__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  font-size: var(--font-size-sm);
}

.themed-cta__link {
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.8);
}

.themed-cta__link:hover {
  border-color: var(--color-primary);
}
