.restaurant-hero {
  display: flex;
  align-items: center;
}

.restaurant-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr);
  gap: var(--space-8);
}

.restaurant-hero__content {
  border-radius: var(--radius-xl);
}

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

.restaurant-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.restaurant-hero__media {
  display: none;
}

.restaurant-hero__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.restaurant-feature {
  align-items: center;
  gap: var(--space-8);
}

.restaurant-feature__media {
  max-width: 520px;
  margin: 0 auto;
}

.restaurant-intro {
  max-width: 720px;
}

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

.restaurant-chef__header {
  max-width: 720px;
  margin-bottom: var(--space-8);
}

.restaurant-chef__grid {
  align-items: stretch;
}

.restaurant-chef__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.restaurant-comfort__grid {
  align-items: stretch;
}

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

.restaurant-sustainability {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  align-items: flex-start;
}

.restaurant-sustainability__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.restaurant-next {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  align-items: flex-start;
}

.restaurant-next__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .restaurant-hero__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: center;
  }

  .restaurant-hero__media {
    display: block;
  }

  .restaurant-feature--reverse {
    grid-auto-flow: dense;
  }

  .restaurant-feature--reverse > .restaurant-feature__media {
    order: -1;
  }

  .restaurant-sustainability {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .restaurant-next {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 767.98px) {
  .restaurant-hero {
    padding-top: var(--space-16);
  }

  .restaurant-hero__meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
