body {
  background-color: var(--color-bg);
}

.themed-hero {
  position: relative;
  padding-block: var(--space-16);
}

.themed-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.themed-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05) brightness(0.75);
  transform: scale(1.03);
}

.themed-split {
  align-items: flex-start;
  gap: var(--space-8);
}

@media (min-width: 992px) {
  .themed-split {
    align-items: center;
  }
}

.themed-image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(25, 184, 184, 0.35);
  box-shadow: var(--shadow-elevated);
}

.themed-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.themed-bullet-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-left: 0;
}

.themed-bullet-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.themed-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: radial-gradient(circle, var(--color-primary-strong), var(--color-primary));
}

.themed-step-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  counter-reset: themed-step;
}

.themed-step-list li {
  position: relative;
  padding-left: 2.4rem;
  color: var(--color-text-muted);
}

.themed-step-list li::before {
  counter-increment: themed-step;
  content: counter(themed-step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(25, 184, 184, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-50);
  background: radial-gradient(circle at top, rgba(25, 184, 184, 0.35), rgba(5, 6, 8, 0.98));
}

.themed-booking-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.themed-gallery-section {
  position: relative;
}

.themed-gallery-section::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top right, rgba(25, 184, 184, 0.2), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}

.themed-contact-cta {
  align-items: stretch;
}

@media (max-width: 767px) {
  .hero-inner {
    padding-top: var(--space-6);
    padding-bottom: var(--space-4);
  }
  .themed-hero {
    padding-block: var(--space-12);
  }
}
