body {
  background-color: var(--color-bg);
}

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

.hero__grid {
  align-items: center;
}

.hero__content {
  max-width: 34rem;
}

.hero__image-wrapper {
  justify-self: flex-end;
}

.hero__image,
.services__image,
.menu__image,
.contact__image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.services__grid .card,
.menu__grid .card,
.testimonials__grid .card,
.blog__grid .card,
.faq__card,
.pricing__card,
.about__card,
.contact__form {
  height: 100%;
}

.how__steps {
  list-style: none;
  padding-left: 0;
  counter-reset: step-counter;
}

.how__steps li {
  counter-increment: step-counter;
  padding-left: 0;
  margin-bottom: var(--space-4);
}

.how__steps h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.menu__meta {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.testimonial blockquote {
  margin: 0;
}

.contact__form .form__field input[type='checkbox'] {
  margin-right: var(--space-2);
}

.legal__nav {
  align-self: center;
}

@media (max-width: 768px) {
  .hero {
    padding-top: var(--space-12);
  }

  .hero__image-wrapper {
    order: -1;
    margin-bottom: var(--space-6);
  }

  .hero__content {
    max-width: 100%;
  }

  .nav-inline {
    flex-wrap: wrap;
  }
}
