body.themed-page {}
.hero--themed .hero__panel {
  max-width: 700px;
}
.themed-section-grid {
  gap: var(--space-10);
  align-items: center;
}
.themed-section-grid--reverse {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-10);
  align-items: center;
}
@media (max-width: 768px) {
  .themed-section-grid--reverse {
    grid-template-columns: minmax(0, 1fr);
  }
}
.themed-section-grid-cards {
  align-items: stretch;
}
.themed-image-card {
  position: relative;
}
.themed-image-rounded {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
}
.themed-image-pill {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
}
.themed-list {
  margin-top: var(--space-4);
  display: grid;
  gap: 0.4rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}
.themed-list--tags {
  gap: 0.6rem;
}
.themed-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}
.themed-list.themed-list--tags li::before {
  content: none;
}
.themed-cta-inline {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.themed-highlight-card {
  height: 100%;
}
.themed-points-card {
  height: 100%;
}
.themed-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
  margin-bottom: var(--space-3);
}
.themed-note {
  font-size: var(--font-size-xs);
  color: var(--color-gray-600);
}
.themed-quotes {
  display: grid;
  gap: var(--space-4);
  font-size: var(--font-size-sm);
}
.themed-quotes blockquote {
  margin-bottom: var(--space-2);
  color: var(--color-text-soft);
}
.themed-quote-author {
  font-size: var(--font-size-xs);
  color: var(--color-gray-600);
}
.themed-link-inline {
  margin-top: var(--space-3);
}
.themed-reservation-card {
  box-shadow: var(--shadow-medium);
}
.themed-reservation-grid {
  display: grid;
  gap: var(--space-8);
}
@media (min-width: 768px) {
  .themed-reservation-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}
.themed-form {
  display: grid;
  gap: var(--space-4);
}
.themed-breadcrumbs {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}
.themed-breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: var(--font-size-xs);
  color: var(--color-gray-600);
}
.themed-breadcrumbs-list li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: var(--color-gray-400);
}
.themed-breadcrumbs a {
  text-decoration: none;
}
@media (max-width: 640px) {
  .themed-section-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
