.themed-hero-grid {
  align-items: center;
}

.themed-hero-media {
  max-width: 480px;
  margin-inline: auto;
}

.themed-card {
  height: 100%;
}

.themed-calendar-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.themed-calendar-label {
  display: block;
  font-weight: 600;
  color: var(--color-gray-900);
}

.themed-calendar-note {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

.themed-audience-list,
.themed-menu-list,
.themed-clarifications-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: 0.95rem;
  color: var(--color-text-soft);
}

.themed-immersive-grid,
.themed-cuisine-grid,
.themed-gallery-grid,
.themed-reservation-grid,
.themed-privatisation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

.themed-immersive-media,
.themed-gallery-media {
  max-width: 520px;
  margin-inline: auto;
}

.themed-menu-grid {
  align-items: flex-start;
}

.themed-menu-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.themed-reservation-banner {
  margin-top: 0;
}

.themed-reservation-form-card {
  align-self: stretch;
}

.themed-reservation-form .form-grid + .form-grid {
  margin-top: var(--space-4);
}

.themed-consent-row {
  flex-wrap: wrap;
}

.themed-reservation-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.themed-gallery-text .prose {
  margin-top: var(--space-4);
}

@media (min-width: 768px) {
  .themed-immersive-grid,
  .themed-cuisine-grid,
  .themed-gallery-grid,
  .themed-reservation-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .themed-immersive-media,
  .themed-gallery-media {
    margin-inline: 0;
  }

  .themed-reservation-cta {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .themed-privatisation-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .themed-hero-media {
    margin-top: var(--space-6);
  }

  .themed-reservation-banner {
    flex-direction: column;
  }
}
