.themed-hero {
  position: relative;
  padding-top: var(--space-32);
  padding-bottom: var(--space-32);
}

.themed-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.1fr);
  gap: var(--space-16);
  align-items: center;
}

.themed-hero-copy {
  text-align: left;
}

.themed-hero-tags {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.themed-hero-visual {
  display: flex;
  justify-content: center;
}

.themed-hero-plate {
  padding: var(--space-12) var(--space-8);
}

.themed-hero-image {
  border-radius: var(--radius-lg);
}

.themed-floating {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 128, 200, 0.6), rgba(122, 199, 255, 0.4));
  filter: blur(10px);
  opacity: 0.55;
  mix-blend-mode: soft-light;
  animation: var(--animation-float);
}

.themed-floating--1 {
  width: 120px;
  height: 120px;
  top: -30px;
  right: 12%;
}

.themed-floating--2 {
  width: 160px;
  height: 160px;
  bottom: -40px;
  left: 5%;
}

.themed-sparkle {
  animation: floatUp 9s ease-in-out infinite;
}

.themed-sparkle--1 {
  top: 14%;
  right: 16%;
}

.themed-sparkle--2 {
  bottom: 10%;
  right: 8%;
}

.themed-sparkle--3 {
  bottom: 22%;
  left: 16%;
}

.section-header p {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.themed-feature-grid {
  margin-top: var(--space-12);
}

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

.themed-gallery-cta {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.themed-gallery-card {
  padding: var(--space-4);
}

.themed-gallery-image {
  border-radius: var(--radius-lg);
}

.themed-hosts-grid {
  gap: var(--space-16);
  align-items: center;
}

.themed-hosts-card {
  padding: var(--space-4);
}

.themed-hosts-image {
  border-radius: var(--radius-lg);
}

.themed-list {
  margin-top: var(--space-6);
  display: grid;
  gap: var(--space-3);
}

.themed-hosts-links {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.themed-community-grid {
  margin-top: var(--space-10);
}

.themed-community-grid .card {
  height: 100%;
}

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

.themed-calendar-header {
  display: flex;
  justify-content: space-between;
  gap: var(--space-8);
  align-items: flex-start;
  margin-bottom: var(--space-8);
}

.themed-calendar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.themed-calendar-item h3 {
  margin-bottom: var(--space-2);
}

.themed-calendar-footer {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  align-items: center;
}

.themed-calendar-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.themed-steps {
  counter-reset: themed-step;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-6);
}

.themed-steps li {
  position: relative;
  padding-left: var(--space-6);
}

.themed-steps li::before {
  counter-increment: themed-step;
  content: counter(themed-step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: var(--radius-pill);
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.themed-steps h3 {
  margin-bottom: var(--space-2);
}

.themed-booking-card {
  max-width: 960px;
  margin: 0 auto;
}

.themed-booking-header {
  display: flex;
  justify-content: space-between;
  gap: var(--space-8);
  align-items: flex-start;
}

.themed-booking-footer {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  align-items: center;
}

.themed-booking-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.themed-cta-inner {
  max-width: 960px;
  margin: 0 auto;
}

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

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

@media (max-width: 960px) {
  .themed-hero-inner {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .themed-hero-copy {
    text-align: center;
  }

  .themed-hero-tags {
    justify-content: center;
  }

  .themed-gallery-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .themed-hosts-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .themed-calendar-header,
  .themed-booking-header,
  .themed-calendar-footer,
  .themed-booking-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .themed-steps {
    grid-template-columns: minmax(0, 1fr);
  }

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

@media (max-width: 640px) {
  .section {
    padding-top: var(--space-24);
    padding-bottom: var(--space-24);
  }

  .themed-calendar-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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