main {
  padding-top: var(--space-8);
}

.restaurant-hero {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.restaurant-hero__grid {
  align-items: center;
  gap: var(--space-10);
}

.restaurant-hero__title {
  margin-bottom: var(--space-4);
}

.restaurant-hero__subtitle {
  max-width: 34rem;
}

.restaurant-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.restaurant-hero__image-wrapper {
  position: relative;
}

.restaurant-hero__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.restaurant-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restaurant-hero__caption {
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
  background: rgba(248, 244, 239, 0.96);
}

.restaurant-story {
  align-items: flex-start;
  gap: var(--space-10);
}

.restaurant-story__card {
  align-self: stretch;
}

.restaurant-story__links,
.restaurant-team__links {
  margin-top: var(--space-4);
}

.restaurant-philosophy {
  align-items: center;
  gap: var(--space-10);
}

.restaurant-plating__figure {
  height: 100%;
}

.restaurant-plating__image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.restaurant-plating__caption {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
}

.restaurant-signatures {
  margin-top: var(--space-8);
}

.restaurant-signatures__item {
  height: 100%;
}

.restaurant-team {
  align-items: center;
  gap: var(--space-10);
}

.restaurant-team__image-col,
.restaurant-lounge__image-col {
  position: relative;
}

.restaurant-team__figure,
.restaurant-lounge__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.restaurant-team__image,
.restaurant-lounge__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restaurant-team__caption,
.restaurant-lounge__caption {
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
}

.restaurant-lounge {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.restaurant-lounge__grid {
  align-items: center;
  gap: var(--space-10);
}

.restaurant-immersive__grid {
  margin-top: var(--space-8);
}

@media (max-width: 767px) {
  main {
    padding-top: var(--space-4);
  }

  .restaurant-hero {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .restaurant-hero__grid,
  .restaurant-story,
  .restaurant-philosophy,
  .restaurant-team,
  .restaurant-lounge__grid {
    gap: var(--space-6);
  }

  .restaurant-hero__image-wrapper {
    order: -1;
  }
}
