main {
  background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.12), transparent 55%), radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.2), transparent 55%), #050608;
}
.hero p {
  max-width: 640px;
}
.gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 1fr);
  gap: var(--space-4);
  overflow-x: auto;
  padding-bottom: 0.5rem;
}
.gallery-item {
  min-width: 220px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(8, 47, 73, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.gallery-item figcaption {
  padding: var(--space-3) var(--space-4) var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}
.small-text {
  font-size: var(--font-size-sm);
}
@media (max-width: 768px) {
  .reservation-highlight {
    padding: var(--space-5);
  }
  .gallery-item img {
    height: 160px;
  }
}
