html body {
  color: #262626;
}
.themed-hero {
  background: radial-gradient(circle at top left, rgba(255, 184, 107, 0.3), transparent 55%), radial-gradient(circle at bottom right, rgba(255, 138, 61, 0.14), transparent 55%), var(--color-bg);
}
.themed-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: var(--grid-gap-xl);
  align-items: center;
}
.themed-hero__content {
  min-width: 0;
}
.themed-hero__eyebrow {
  margin-bottom: var(--space-sm);
}
.themed-hero__actions .btn {
  max-width: 100%;
}
.themed-hero__meta {
  margin-top: var(--space-md);
}
.themed-hero__media {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.themed-hero__media-frame {
  box-shadow: var(--shadow-medium);
}
.themed-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.themed-hero__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap-md);
}
.themed-highlight-card {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 225, 199, 0.9), rgba(255, 250, 245, 0.95));
  box-shadow: var(--shadow-soft);
}
.themed-highlight-card--soft {
  background: linear-gradient(135deg, rgba(249, 244, 237, 0.9), rgba(255, 241, 223, 0.9));
}
.themed-highlight-card__label {
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}
.themed-highlight-card__value {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--space-2xs);
}
.themed-highlight-card__meta {
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}
.themed-overview {
  background: radial-gradient(circle at top, rgba(255, 225, 199, 0.35), transparent 60%), var(--color-bg);
}
.themed-overview__grid {
  align-items: stretch;
}
.themed-card {
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal), background-color var(--transition-normal);
}
.themed-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  background-color: rgba(255, 255, 255, 0.96);
}
.themed-card__list {
  margin-top: var(--space-sm);
  margin-bottom: 0;
  padding-left: 0;
}
.themed-card__list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}
.themed-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
}
.themed-card__footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  justify-content: space-between;
}
.themed-card__tagline {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}
.themed-schedule {
  background: radial-gradient(circle at top left, rgba(255, 184, 107, 0.2), transparent 60%), var(--color-bg-alt);
}
.themed-schedule__layout {
  align-items: flex-start;
}
.themed-schedule__list {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.themed-schedule-card {
  background: rgba(255, 255, 255, 0.95);
}
.themed-schedule-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}
.themed-schedule-card__date {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
}
.themed-schedule-card__day {
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.themed-schedule-card__meta {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}
.themed-schedule-card__badge {
  white-space: nowrap;
}
.themed-schedule-card__info-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}
.themed-schedule-card__info-item {
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  background-color: rgba(255, 225, 199, 0.5);
}
.themed-schedule-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  justify-content: space-between;
}
.themed-schedule-card__status {
  font-size: var(--font-size-xs);
  font-weight: 500;
  color: #b54708;
}
.themed-schedule-card__status--open {
  color: #166534;
}
.themed-schedule-card__status--soon {
  color: #1d4ed8;
}
.themed-schedule__sidebar {
  min-width: 0;
}
.themed-schedule__info {
  padding: var(--space-lg);
}
.themed-schedule__title {
  margin-bottom: var(--space-sm);
}
.themed-schedule__steps {
  margin: var(--space-md) 0;
  padding: 0;
}
.themed-schedule__steps li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}
.themed-schedule__step-index {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: var(--color-primary-gradient);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  flex-shrink: 0;
}
.themed-schedule__step-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}
.themed-schedule__cta-group .btn {
  max-width: 100%;
}
.themed-gallery {
  background: radial-gradient(circle at bottom right, rgba(255, 184, 107, 0.25), transparent 60%), var(--color-bg);
}
.themed-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap-lg);
}
.themed-gallery__item {
  min-width: 0;
}
.themed-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.themed-gallery__cta {
  margin-top: var(--space-xl);
}
.themed-gallery__chips {
  justify-content: center;
  margin-bottom: var(--space-md);
}
.themed-gallery__btn-group {
  justify-content: center;
}
.themed-reservation {
  background: radial-gradient(circle at top, rgba(255, 225, 199, 0.4), transparent 60%), var(--color-bg-alt);
}
.themed-reservation__panel {
  padding: var(--space-lg);
}
.themed-reservation__form {
  width: 100%;
}
.themed-reservation__row {
  align-items: flex-start;
}
.themed-reservation__field-full {
  margin-top: var(--space-md);
}
.themed-reservation__actions .btn {
  max-width: 100%;
}
[data-animate] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition-slow), transform var(--transition-slow), box-shadow var(--transition-normal), background-color var(--transition-normal);
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate="fade-in-up"] {
  transform: translateY(18px);
}
@media (max-width: 1199px) {
  .themed-hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .themed-hero__media {
    order: -1;
  }
}
@media (max-width: 991px) {
  .themed-hero__highlights {
    grid-template-columns: minmax(0, 1fr);
  }
  .themed-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .themed-hero__inner {
    gap: var(--grid-gap-lg);
  }
  .themed-hero__highlights {
    gap: var(--grid-gap-sm);
  }
  .themed-reservation__panel {
    padding: var(--space-md);
  }
  .themed-schedule-card__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .themed-schedule-card__badge {
    align-self: flex-start;
  }
  .themed-gallery__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 479px) {
  .themed-hero__highlights {
    grid-template-columns: minmax(0, 1fr);
  }
  .themed-reservation__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
