html {
  scroll-padding-top: var(--header-height-mobile);
}

@media (min-width: 768px) {
  html {
    scroll-padding-top: var(--header-height-desktop);
  }
}

.hero-floating-title {
  font-size: var(--text-md);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.hero-floating-text {
  font-size: var(--text-sm);
  color: var(--color-text-soft);
  margin-bottom: var(--space-sm);
}

.hero-floating-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.theme-summary-grid .card {
  min-height: 100%;
}

.theme-list {
  margin: 0;
  padding: 0;
}

.theme-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.35rem;
  font-size: var(--text-sm);
  color: var(--color-text-soft);
}

.theme-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary-soft), var(--color-accent-mint));
  box-shadow: 0 0 0 3px rgba(169, 229, 194, 0.4);
}

.theme-card-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.theme-card {
  border-radius: var(--radius-card);
  background: var(--color-surface-strong);
  border: 1px solid var(--color-border-subtle);
  padding: var(--space-md);
  box-shadow: var(--shadow-subtle);
}

.theme-card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xs);
  margin-bottom: var(--space-xs);
}

.theme-card-header h3 {
  font-size: var(--text-lg);
  margin-bottom: 0;
}

.theme-card p {
  margin-bottom: 0;
  font-size: var(--text-sm);
}

.theme-media-column {
  min-width: 0;
}

.theme-media-column .media-grid {
  gap: var(--grid-gap-md);
}

.theme-media-column .media-frame {
  max-width: 100%;
}

.atmosphere-grid .card {
  min-height: 100%;
}

.related-grid .card {
  min-height: 100%;
}

.reservation-cta-actions .btn {
  max-width: 100%;
}

.related-grid a.link-underline,
.theme-summary-grid a.link-underline {
  font-size: var(--text-sm);
}

[data-animate] {
  will-change: transform, opacity;
}

@media (max-width: 767.98px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
  }
  .reservation-cta-actions {
    width: 100%;
  }
}

.nav-toggle {
  flex-direction: column;
}
