.hero-cta-group {
  flex-wrap: wrap;
}

.hero-themes-image-wrapper {
  margin-top: var(--space-12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-color-soft);
  box-shadow: var(--shadow-deep);
}

.hero-themes-image {
  width: 100%;
  height: auto;
}

.badge-floating--top-left {
  top: 18%;
  left: 6%;
}

.badge-floating--top-right {
  top: 22%;
  right: 6%;
}

.badge-floating--bottom-left {
  bottom: 18%;
  left: 10%;
}

.badge-floating--bottom-right {
  bottom: 14%;
  right: 10%;
}

.themes-grid {
  align-items: stretch;
}

.themes-image-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}

.themes-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-color-soft);
  background-color: var(--color-surface-elevated);
}

.themes-image-main {
  width: 100%;
  height: auto;
}

.themes-image-label {
  position: absolute;
  left: var(--space-10);
  bottom: var(--space-10);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background-color: rgba(0, 0, 0, 0.75);
  border: 1px solid var(--border-color-gold);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.themes-image-hosts {
  margin-bottom: var(--space-10);
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-color-soft);
}

.theme-split-block {
  padding: var(--space-12);
}

.themes-note-card {
  padding: var(--space-14);
}

.reservation-form {
  padding: var(--space-16);
}

.reservation-hint {
  margin-top: var(--space-10);
  padding: var(--space-14);
}

.themes-steps {
  margin: 0;
  padding: 0;
  counter-reset: step-counter;
}

.themes-steps li {
  list-style: none;
  position: relative;
  padding-left: 32px;
  margin-bottom: var(--space-4);
  color: var(--color-text-muted);
}

.themes-steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid var(--border-color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
}

.themes-steps span {
  font-weight: 600;
  color: var(--color-text);
}

@media (max-width: 960px) {
  .badge-floating {
    display: none;
  }

  .reservation-form {
    margin-top: var(--space-16);
  }
}

@media (max-width: 768px) {
  .hero-themes-image-wrapper {
    margin-top: var(--space-10);
  }
}
