.hero {
  height: calc(100dvh - var(--header-height));
  align-content: center;
  background-size: cover;
}

.hero__title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1;

  color: #fff;
}

.hero__description {
  margin-top: 15px;
  font-weight: 600;
}

.hero__button {
  margin-top: 25px;

  color: #fff;
  background-color: #000;
}

.hero__button:hover,
.hero__button:focus-visible {
  color: #000;
  background-color: #fff;
}

.recipes {
  display: flex;
  flex-direction: column;

  row-gap: 150px;
  padding-block: 100px 50px;
}

.recipes-item {
  display: flex;
}

.recipes-item-body {
  width: 35%;
}

.recipes-item-body__subtitle {
  font-size: 24px;
  font-weight: 800;

  color: var(--accent-color);
}

.recipes-item-body__title {
  margin-top: 10px;

  font-size: 53px;
  font-weight: 800;
  line-height: 1;
  text-wrap: balance;
}

.recipes-item-body__list {
  margin-top: 20px;
}

.recipes-item-body__list > li {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-weight: 600;
}

.recipes-item-body__list > li + li {
  margin-top: 10px;
}

.recipes-item-body__list > li::before {
  display: block;
  content: '';

  width: 1.5em;
  height: 1.5em;

  background-size: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23e94a28' d='m9.55 18l-5.7-5.7l1.425-1.425L9.55 15.15l9.175-9.175L20.15 7.4z'/%3E%3C/svg%3E");
}

.recipes-item-body__button {
  margin-top: 20px;

  color: #fff;
  background-color: var(--accent-color);
}

.recipes-item-body__button:hover,
.recipes-item-body__button:focus-visible {
  color: var(--accent-color);
  background-color: #000;
}

.recipes-item__video {
  width: 65%;
  aspect-ratio: 16 / 9;
  border-radius: 30px;
}

.advatanges {
  padding-block: 5px 100px;
  border-top: 1px solid currentColor;
}

.advatanges__title {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
}

.advatanges-body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
  margin-top: 60px;
}

.advatanges-item {
  padding: 25px;
  border-radius: 30px;
  background-color: var(--accent-color);
}

.advatanges-item__image {
  width: 75%;
  margin-inline: auto;

  aspect-ratio: 1;
  object-fit: scale-down;
}

.advatanges-item__title {
  margin-top: 10px;

  font-size: 24px;
  font-weight: 800;

  text-wrap: balance;
  text-align: center;
}

.advatanges-item__description {
  margin-top: 10px;

  font-weight: 600;
  text-wrap: pretty;
  text-align: center;

  color: #fff;
}

.promo__title {
  padding-block: 65px;

  font-size: 24px;
  font-weight: 600;
  text-align: center;

  color: #fff;
  background-color: #000;
}

.promo__image {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.catalog {
  padding-block: 100px;
  background-image: linear-gradient(180deg, #fff5eb 0%, #ffdab5 100%);
}

.catalog__title {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
}

.catalog__button {
  margin: 15px auto 0 auto;
  color: #fff;
  background-color: #000;
}

.catalog__button:hover,
.catalog__button:focus-visible {
  color: #000;
  background-color: var(--accent-color);
}

.catalog-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 60px 30px;
  margin-top: 80px;
}

.catalog-item__image {
  width: 100%;
  height: 200px;

  object-fit: scale-down;
}

.catalog-item__title {
  margin-top: 10px;

  font-size: 24px;
  font-weight: 800;

  text-wrap: balance;
  text-align: center;
}

.catalog-item__description {
  font-size: 18px;
  font-weight: 800;
  text-align: center;

  color: var(--accent-color);
}

.history {
  padding-block: 100px;
  background-color: #fff5eb;
}

.history__title {
  display: flex;
  align-items: center;
  column-gap: 10px;

  font-size: 36px;
  font-weight: 900;
}

.history__title::after {
  display: block;
  content: '';

  flex-grow: 1;
  height: 1px;

  background-color: currentColor;
}

.history-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 60px 30px;
  margin-top: 30px;
}

.history-item:first-child > .history-item__image {
  filter: brightness(0.85);
}

.history-item__image {
  width: 100%;
  aspect-ratio: 16 / 9;

  object-fit: cover;
  border-radius: 30px;
}

.history-item__description {
  margin-top: 30px;

  font-weight: 600;
  text-wrap: pretty;
}

.history__banner {
  width: 100%;
  margin-top: 30px;

  object-fit: cover;
  aspect-ratio: 16 / 9;

  border-radius: 30px;
}

.chef {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 30px;
  padding-block: 100px;
}

.chef__video {
  width: 100%;
  border-radius: 30px;
  aspect-ratio: 16 / 9;
}

.chef__subtitle {
  font-size: 24px;
  font-weight: 800;

  color: var(--accent-color);
}

.chef__title {
  margin-top: 10px;

  font-size: 53px;
  font-weight: 800;

  line-height: 1;
  text-wrap: balance;
}

.chef__quote {
  margin-top: 15px;
  font-weight: 600;
}

.partnership {
  padding-block: 100px;
  background-color: #fff5eb;
}

.partnership > .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.partnership-body {
  align-content: center;
}

.partnership__title {
  font-size: 36px;
  font-weight: 900;
}

.partnership__description {
  margin-top: 10px;

  font-weight: 600;
  text-wrap: pretty;
}

.partnership__button {
  margin-top: 20px;

  color: #fff;
  background-color: var(--accent-color);
}

.partnership__button:hover,
.partnership__button:focus-visible {
  color: var(--accent-color);
  background-color: #000;
}

.partnership__image {
  width: 100%;

  object-fit: cover;
  aspect-ratio: 4 / 3;

  border-radius: 30px;
}

.contacts {
  padding-block: 150px;
  background-size: cover;
  background-position: center;
}

.contacts > .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.contacts__title {
  font-size: 36px;
  font-weight: 900;

  color: #fff;
}

.contacts-body {
  padding: 40px;

  display: flex;
  flex-direction: column;
  row-gap: 20px;

  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.6);
}

.contacts-item {
  display: flex;
  column-gap: 15px;
  width: fit-content;
}

.contacts-item__icon {
  display: flex;
  flex-shrink: 0;

  width: 50px;
  height: 50px;

  border-radius: 100%;
  border: 2px solid var(--accent-color);
}

.contacts-item__icon > svg {
  margin: auto;

  width: 36px;
  height: 36px;

  color: var(--accent-color);
}

.contacts-item-body__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;

  color: #fff;
}

.contacts-item-body__text {
  margin-top: 5px;
  font-weight: 900;
  color: #fff;
}
